Difference between revisions of "E"

From Organic Design wiki
(add that new phi stuff)
m
Line 1: Line 1:
;Related Pedia Articles:
 
*[[Wikipedia:Exponential function|Exponential function]]
 
*[[Wikipedia:E (mathematical constant)|E (mathematical constant)]]
 
*[[Wikipedia:Euler's identity|Euler's identity]]
 
 
 
A page for e, i, π, and φ
 
A page for e, i, π, and φ
  
Line 32: Line 27:
 
But a better conceptual representation is to restructure it such that the division occurs outside the main loop since its also a higher-level operation. So each iteration is now maintaining the value of a numerator and denominator which represent the entire preceeding series as a single fraction which can be reduced afterwards.
 
But a better conceptual representation is to restructure it such that the division occurs outside the main loop since its also a higher-level operation. So each iteration is now maintaining the value of a numerator and denominator which represent the entire preceeding series as a single fraction which can be reduced afterwards.
 
<table class=document-code><tr><td>[[+alt e.pl]]</table>
 
<table class=document-code><tr><td>[[+alt e.pl]]</table>
 +
 +
 +
----
 +
;See also
 +
*[[Wikipedia:Exponential function|Exponential function]]
 +
*[[Wikipedia:E (mathematical constant)|E (mathematical constant)]]
 +
*[[Wikipedia:Euler's identity|Euler's identity]]

Revision as of 04:16, 23 August 2006

A page for e, i, π, and φ

R.Knott

tan x 	= cos x and, since tan x = sin x / cos x, we have:
sin x 	=(cos x)2
	=1-(sin x)2 because (sin x)2+(cos x)2=1.
or	(sin x)2 + sin x = 1
and solving this as a quadratic in sin x, we find
sin x = (-1+sqrt5)/2 or
sin x = (-1-sqrt5)/2

The role that the exponential function (ex) plays is extremely significant to an understanding of the laws of nature and harmonic organisation.

[math]e^x = \sum_{n = 0}^{\infty} {x^n \over n!} = 1 + x + {x^2 \over 2!} + {x^3 \over 3!} + {x^4 \over 4!} + \cdots[/math]

As an infinite sum it is Σ(xn/n!)   =   1   +   x / 1   +   x.x / 1.2   +   x.x.x / 1.2.3   +   x.x.x.x / 1.2.3.4 + ...  

We can look at the construction of this relation more easily by describing it by an algorithm. We can remove the power and factorial operations by basing the current numerator and denominator values on the previous values:

+e.pl

But a better conceptual representation is to restructure it such that the division occurs outside the main loop since its also a higher-level operation. So each iteration is now maintaining the value of a numerator and denominator which represent the entire preceeding series as a single fraction which can be reduced afterwards.

+alt e.pl



See also