The Golden Ratio & The Golden Rectangle: Abstract-This Report Is Showing The Importance
The Golden Ratio & The Golden Rectangle: Abstract-This Report Is Showing The Importance
College of Engineering
Electrical Engineering Dept
Computer Simulation of Engineering Systems (GE-501)
Mini Project-2
Expressed algebraically:
The tow values a and b are said to be in the
golden ratio if:
(1)
Equation (1) can be written as:
i.
Introduction:
The golden ratio is the most controversial
number through history. It makes works that
based on it very creative and beautiful. It is one
of the beauty's secrets and standers.
It has been significantly noticed in the nature.
The golden ration has been noticed even in living
things especially the human. That gives it
incredible glamour and special beauty.
This ratio is very important for those who have
interest in art, Painting, drawing, architecture,
decoration and others who invent things valuable
and beautiful.
ii.
(2)
By definition, it is shown that:
(3)
Multiplying each side by :
(4)
The roots of equation (4) using the quadratic
formula are:
(5)
a+b
Figure 1: Line segments in the golden ratio
2. Numerical method:
Equation (7) can be transformed to:
( )
(11)
1. Analytical method:
From Figure2 and the definition of the golden
ratio:
(6)
Or:
(7)
Multiplying equation (7) by :
(8)
And equation can be rearranged as:
3. Iterative method:
Equation (3) can be expanded recursively to
obtain a continued fraction for the golden ratio:
(12)
(9)
The roots of equation (9) using the quadratic
formula are:
(13)
(10)
1
3
5
7
9
11
1
1.5
1.6
1.6154
1.6176
1.618
iv.
Final Shape:
Figure4 shows the plotting of the golden
rectangle that in figure2 using MATLAB.
vi.
References:
[1]. M. Livio. The Golden Ratio, Broadway
Books, 2002
[2]. L.E. Sigler. Fibonaccis Liber Abaci,
Springer, New York, 2002.
[3]. N. Lopez, M. Nunez, I. Rodrguez, F.
Rubio. Introducing the Golden Section to
Computer Science, Proc. of the First IEEE
International Conference on Cognitive
Informatics (ICCI02), 2002
v.
Conclusion:
The Golden Ratio is great but it is one among
hundreds of other techniques to achieve
balanced and aesthetically pleasing designs. It
must be used only when it is appropriate does
not conflict with other rules or conditions that
are more appropriate in the surrounding
environment otherwise it will disrupt the
product or design. There are millions of
beautiful designs out there that do not follow
the Golden Ratio yet they are pleasing to the
eye and are perfectly balanced so it must be
used wisely and only where it is needed.
Appendix
% King Saud University-Engineering college-Electrical Engineering Dept
% KSA-Riyadh 9/24/2013
% Mini project 2 by khalid Alhamawi Assigned to Professor Adel
Abdennour
%======================================================================
% First :
graph
f(a)= 1/a-( a-1) over interval
(0 < a < 5).
%======================================================================
f=@(a) 1./a -(a-1);
ezplot(f,[0,5])
a = fzero(f,2)
hold on
grid on
plot(a,0,'r*')
ylabel('f(a)');
text(a+.2,.75,'f(a)=0')
text(a+.2,.25,'a=1.618')
%====================================================================
% Second: estimate a for different values of n (iterations).
%====================================================================
for j=1:6
n=input('number of iterations= ')
x(1)=inf;
for i=2:n
x(i)=1/(1+x(i-1));
end
a(j)=1+(1/(1+x(n)));
e(j)=1.618-a(j);
end
disp(['a=' num2str(a)])
disp(['e=' num2str(e)])
%=================================================================
% Third: Ploting the final shape
%=================================================================
a = (1+sqrt(5))/2;
x = [0 a a 0 0];
y = [0 0 1 1 0];
u = [1 1];
v = [0 1];
figure
plot(x,y,'r',u,v,'r--')
text(a/2,1.05,'a')
text((1+a)/2,-.05,'a - 1')
text(-.05,.5,'1')
text(.5,-.05,'1')
axis equal
axis off
set(gcf,'color','white')