OllyK":xjmysoal said:
OK, need to do some reading first, but it would seem that it's a case of developing an appropriate rounding mechanism / compare to a set of figures in the case above.
Normaly when using the golden ratio or the plastic number one first graphically draws the set starting from 1. Whith this drawn set at hand one can start designing the piece choosing the smallest measurement.
With the computer at hand (or when one is fund of wrinting many sheets full with numbers) the easiest way to calculate the set is to calculate the sum of the previous results in a iterate loop. (useful only for small numbers as the number of iterations adds up quickly for numbers above a couple of thousand):
1, 1, 1+1=2, 1+2=3, 2+3=5, 3+5=8, 5+8=13, 8+13=21, etc
When a user is to enter a random number for which the next number in the set is given one has also sum the two previous results. Which ofcouse are not known. The easiest way would be to work up calculating the result for 1, 2, 3 etc until you get to the number entered by the user.
Calculating a golden ratio for small number is like finding a prime number.
Also the user cannot enter any number. When for instance the user enters 7.5" there is no result.
In fact the above is not true at all. Any set being a Fibonacci, Perrin, Padovan, or any other set can be scaled. Like as you could build a table to scale. When in the above case asuming a scale factor of 7.5 the resulting answers would be 1 * 7.5, 1 * 7.5, 2 * 7.5, 3 * 7.5, 5 * 7.5, etc
Finding the scale factor to the set is like finding the greatest common divisor or a beter example would be converting decimals to fractions like 0.75 = 3/4.
Within one piece of furnatre the same scale factor has to be used.
So when designing a piece around a first measurement of 6":
6 does not meet q =1 + 1/q so the set has to be scaled.
The smallest possible scale factor would be 2. This would make tis measurement the 4th number in the set. The set being:
1*2, 1*2, 2*2, 3*2, 5*2, 8*2, etc
The next larger dimension for 6" would thus be 10" (not 9.7)
The above can also be done for calculating a plastic number. Which is a Padovan set which is iterataively calculated by the sum of the two previous results skipping one result. i.e.: 1, 1, 1, 1+1=2, 1+1=2, 1+2=3, 2+2=4, 2+3=5, 3+4=7, 4+5=9, 5+7=12, etc