home *** CD-ROM | disk | FTP | other *** search
/ Assembly 1994 - The 3rd Phase / ASMROM94.mdf / sources / code.txt < prev    next >
Text File  |  1994-11-12  |  6KB  |  218 lines

  1.  ╔════════════════════════════════════════════════════════════════════════╗
  2.  ║                             Mathematik Formules                        ║
  3.  ║                                                                        ║
  4.  ║    By Volpone of Malorean Effect for crazy mathematicians like Toto    ║
  5.  ║                                                                        ║
  6.  ║    Bibliographie : -Fractint.doc  (of Fractint 17.1)                   ║
  7.  ║                    -Pour l'honneur de l'esprit humain                  ║
  8.  ║                     (les mathématiques aujourd'hui)                    ║
  9.  ║                     Jean Dieudonné                                     ║
  10.  ║                                                                        ║
  11.  ║                             Version 2.0                                ║
  12.  ║                        Release January 1994                            ║
  13.  ║                                                                        ║
  14.  ╚════════════════════════════════════════════════════════════════════════╝
  15.  
  16. --------------------------- Constantes Part ---------------------------------
  17.  
  18. π   =3.14159265359
  19. π/2 =1.5707963268
  20. 2*π =6.28318530718
  21. e   =2.71828182846
  22.  
  23. ----------------------- Complexe definitions Part -------------------------------
  24.  
  25. Z=x+i*y
  26.  
  27. Z=x-i*y
  28.  
  29. Z=r*e^(i*α)   r=√(x^2+y^2)  Tan(α)=y/x
  30.  
  31. Re(Z) = x   Im(Z) = y
  32.  
  33. ----------------------- Complexe formules Part -------------------------------
  34.  
  35.      ─
  36. Z^-1=Z/(│Z│^2)
  37.  
  38. │Z+Z'│<=│Z│+│Z'│
  39.  
  40.   ─
  41. Z*Z=│Z│^2
  42.  
  43. n     n
  44.  √(Z)= √(r)*e^i*(α/n)
  45.  
  46. │n    │   n
  47. │ √(Z)│ =  √│Z│  = (x^2+y^2)^(1/(2*n))
  48.  
  49. Z^n=1    -> Z=e^i*(α/n)
  50.  
  51. ----------------------- Z1=√(Z2) Part -------------------------------
  52.  
  53. Z1=√(Z2)
  54.  
  55. Re(Z1)=[√(│Z2│+X2)]/4    ║    Im(Z1)=[√(│Z2│-X2)]/4
  56.  
  57. Re(Z1)/Im(Z1)=(│Z2│+x2)/│y2│
  58.  
  59. Re(Z1)*Im(Z1)=│y2│/16
  60.  
  61.  
  62. ------------------  Ln \ Log \ Exp \ Z^C Part ------------------------
  63.    *
  64. xεR  ln(x+iy) = (1/2)ln(x*x + y*y) + i(arctan(y/x) + 2kPi)
  65.                                       (k = 0, +-1, +-2, +-....)
  66.      Ln(i*y)  (y>0) = Ln(y)+i*π/2
  67.               (y<0) = Ln(y)-i*π/2
  68.  
  69.      z^z = e^(log(z)*z)
  70.  
  71.      e^i*a    =  Cos(a) + i*Sin(a)
  72.      e^(x+iy) =  e^x * e^(i*y)
  73.               = (Ch(x) + Sh(x)) * (cos(y) + i*sin(y))
  74.               =  e^x * (cos(y) + i*sin(y))
  75.               = (e^x * cos(y)) + i(e^x * sin(y))
  76.  
  77.      Z=x+i*y  C=a+i*b
  78.  
  79.    *
  80. xεR                    │Z│^a
  81.      Z^C      =  ----------------- * e^i*(a*ArcTan(y/x) + b*Ln│Z│ )
  82.                   e^(ArcTan(y/x))
  83.  
  84. --------------------  Circular real function Part --------------------------
  85.  
  86. xεR yεR
  87.  
  88.      Sh(x)       = [e^x - e^(-x)]/2
  89.      Ch(x)       = [e^x + e^(-x)]/2
  90.      Th(x)       =
  91.      Sh(x)+Ch(x) = e^x
  92.  
  93.      Sin (x+y)    = Sin(x)*Cos(y)+Cos(x)*Sin(y)
  94.      Sin (x-y)    = Sin(x)*Cos(y)-Cos(x)*Sin(y)
  95.      Cos (x+y)    = Cos(x)*Cos(y)-Sin(x)*Sin(y)
  96.      Cos (x-y)    = Cos(x)*Cos(y)+Sin(x)*Sin(y)
  97.      Tan (x+y)    = [Tan(x)+Tan(b)] / [1-Tan(x)*Tan(y)]
  98.      Tan (x-y)    = [Tan(x)-Tan(b)] / [1+Tan(x)*Tan(y)]
  99.      ATan(x+y)    =
  100.  
  101.  
  102.  
  103. -------------------  Circular complex function Part ------------------------
  104.  
  105.      sin (x+iy) = sin(x)Ch(y) + icos(x)Sh(y)
  106.      cos (x+iy) = cos(x)Ch(y) - isin(x)Sh(y)
  107.      Sh(x+iy) = Sh(x)cos(y) + iCh(x)sin(y)
  108.      Ch(x+iy) = Ch(x)cos(y) + iSh(x)sin(y)
  109.  
  110.                        sin(2x)               Sh(2y)
  111.      tan(x+iy) = ------------------  + i------------------
  112.                  cos(2x) + Ch(2y)     cos(2x) + Ch(2y)
  113.  
  114.                       Sh(2x)                sin(2y)
  115.      tanh(x+iy) = ------------------ + i------------------
  116.                   Ch(2x) + cos(2y)    Ch(2x) + cos(2y)
  117.  
  118.                    sin(2x) - i*Sh(2y)
  119.      cotan(x+iy) = --------------------
  120.                     Ch(2y) - cos(2x)
  121.  
  122.                     Sh(2x) - i*sin(2y)
  123.      cotanh(x+iy) = --------------------
  124.                      Ch(2x) - cos(2y)
  125.  
  126.  
  127.  
  128. --------------------  Expoly1 Part   -----------------------------
  129. │ The Expoly1 formule is use for the matematica 2                │
  130. │ Expoly1 is create by Volpone Of Malorean Effect                │
  131. ------------------------------------------------------------------
  132.  
  133. P(x)=A.x^2+B.X+C
  134.  
  135.            d
  136.  P'(x)   = --- P(x)   =  2*A.x+B
  137.            dx
  138.  
  139.             d
  140.  P''(x)  = --- P'(x)  =  2*A
  141.            dx
  142.  
  143.             d
  144.  P'''(x) = --- P''(x) =  0
  145.            dx
  146.  
  147. -The formule
  148.                                   d
  149. Fx(0)=P(X)    Fx(N) = Fx(N-1) +  ----Fx(N-1)
  150.                                   dx
  151.  
  152. -Example :first number of suite
  153.  
  154. (Fx(1)=P(x)+P'(x) )
  155.                      d
  156. (Fx(2)=P(x)+P'(x) + ---[P(x)+P'(x)]
  157.                      dx
  158.       =P(x)+P'(x)+[P'(x)+P''(x)]
  159.       =P(x)+2*P'(x)+P''(x)
  160.  
  161.  
  162. - The formules
  163.                                       N-1
  164. Fx(N)=A.x^2 + (B+2*A*N).X + C+B*N+2*A*Σ  i
  165.                                       i=1
  166.                        N-1
  167. Fx(N)=P(x) + N*P'(X) + Σ  i *P''(x)
  168.                        i=1
  169.  
  170. Fx(N+1)=Fx(N)+P'(x)+N*P''(x)
  171.  
  172.  
  173. Exemples :  F(x,y) = Px(x) + Px(y) = Color to pixel(x,y)
  174.  
  175.  
  176. ---------------------------- Vector Part -------------------------------
  177.  
  178. ->  │Ux    ->  │Vx
  179. U   │Uy    V   │Vy
  180.     │Uz        │Vy
  181.  
  182. ->  ->                      ║  ->   ->   │Uy*Vz-Vy*Uz
  183. U ∙ V  = Ux*Vx+Uy*Vy+Uz*Vz  ║  U ^  V  = │Uz*Vx-Vz*Ux
  184.                             ║            │Ux*Vy-Vx*Uy
  185.  
  186. ->   ->  ->      ->  ->  ->    ->  ->  ->
  187. U ^ (V ^ W ) =  (U . W )*V  - (U . V )*W
  188.  
  189.  
  190. ----------------------- Quaternion formules Part -------------------------------
  191.  
  192. Quarternions has discover by Hamilton in 1843
  193.  
  194. On pose Qu = ensembles nombres quarternions
  195.  
  196. Q εQu  -> Q1=A +i*B +j*C +k*D    ╔══════════╦═════════╦════════╦════════╗
  197. Q1εQu  -> Q1=A1+i*B1+j*C1+k*D1   ║ i^2=-1   ║ i*j=+k  ║ i*k=-j ║ j*k=+i ║
  198. Q2εQu  -> Q2=A2+i*B2+j*C2+k*D2   ║ k^2=-1   ║ j*i=-k  ║ k*i=+j ║ k*j=-i ║
  199.                                  ╚══════════╩═════════╩════════╩════════╝
  200.  
  201.  
  202. │Q│=√(A^2+B^2+C^2+D^2)
  203.  
  204. Q1+Q2=(A1+A2)+(B1+B2)*i+(C1+C2)*j+(D1+D2)*k
  205.  
  206. Q1*Q2= (A1*A2-B1*B2-C1*C2-D1*D2)
  207.       +(A1*B2+B1*A2+C1*D2+D1*C2)*i
  208.       +(A1*C2-B1*D2+C1*A2+D1*B2)*j
  209.       +(A1*D2+B1*C2-C1*B2+D1*D3)*k
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.       ZORG !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!