home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 125 / Computer Shopper CD-ROM Issue 125 (1998-07)(Dennis Publishing).iso / EuroMath / MathDemo / DataBase / learning / ID375.txt < prev   
Encoding:
Text File  |  1996-10-22  |  1.6 KB  |  109 lines

  1. N
  2.  
  3.  
  4. @seeAlso 2number sequences
  5.  
  6. @animate FibSwordOut,FibWaveSword,FibWaveSword,FibSwordIn
  7. '@animate FibRaiseRArm,FibWaveRArm,FibWaveRArm,FibWaveRArm,FibLowerRArm,FibRaiseLArm
  8. '@animate FibRaiseLArm,FibLowerLArm
  9.  
  10. @PlaySoundFile \a1010501.wav
  11.  
  12.  
  13. @atGraphic 5,5
  14. @Picture algebra\a010105.bmp
  15.  
  16.  
  17. @At 0,5
  18. #<Fibonacci sequence#
  19.  
  20. @definition
  21. @at 70,23
  22. A Fibonacci sequence is a special 
  23. @At 10,
  24. number pattern where each term is equal to the 
  25. sum of the previous two terms.
  26.  
  27.  
  28.  
  29.  
  30. @Wait 7
  31. '@prompt
  32. @At 10,65
  33. @keyPoint 9999,fibonacci sequence
  34.  
  35.  
  36. An example of a Fibonacci sequence is:
  37.  
  38. @PlaySoundFile \a1010502.wav
  39.  
  40. @Wait 0.5
  41.  
  42.  
  43.  
  44. @animate FibRaiseRArm,FibWaveRArm,FibWaveRArm,FibWaveRArm,FibLowerRArm
  45.  
  46.  
  47. @at 40,+6
  48. 1st term 2nd term 3rd term 4th term 
  49.     1,            ;
  50. @Wait 0.25
  51. 1,            ;
  52. @Wait 0.25
  53. 2,            ;
  54. @Wait 0.25
  55. 3,     
  56.  
  57. @Wait 0.5
  58. @At 10,
  59.                          (1 + 0)    ;
  60. @Wait 0.25
  61. (1 + 1)    ;
  62. @Wait 0.25
  63.  (1 + 2)   
  64.  
  65.  
  66. @Wait 0.5
  67. @at 40,+6
  68. 5th term 6th term 7th term  8th term
  69.     5,            ;
  70. @Wait 0.25
  71. 8,           ;
  72. @Wait 0.25
  73. 13,           ;
  74. @Wait 0.25
  75. 21
  76.  
  77.  
  78. @Wait 0.5
  79. @At 40,
  80. (2 + 3)    ;
  81. @Wait 0.25
  82. (3 + 5)     ;
  83. @Wait 0.25
  84. (5 + 8)     ;
  85. @Wait 0.25
  86. (8 + 13)
  87.  
  88.  
  89. @Wait 0.5
  90. @at 10,+6
  91. The rule is:
  92. @Wait 0.5
  93. @at ,+4
  94. #bTo find the next term add together the#
  95. #blast two terms.#
  96.  
  97.  
  98. @animate FibRaiseLArm
  99.  
  100.  
  101.  
  102. @prompt
  103. @keyPoint 9999,summary
  104. #bSummary#
  105. @Wait 0.5
  106. @At ,+10
  107.    *   #^A Fibonacci sequence is one where each
  108. #tterm in the sequence is found by adding 
  109. #ttogether the two previous terms.