Difference between revisions of "Manuals/calci/GEOMETRICSERIES"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "geo")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
geo
+
<div style="font-size:30px">'''GEOMETRICSERIES (Start,CommonRatio,Numbers,OnlyNth)'''</div><br/>
 +
*<math>Start</math> is the minimum number of the series.
 +
*<math>Common ratio</math> is the difference of the two numbers in the series.
 +
 
 +
 
 +
==Description==
 +
*This function returns the value of the Geometric Series.
 +
*In <math>GEOMETRICSERIES (Start,CommonRatio,Numbers,OnlyNth)</math>, <math>Start</math> is the Initial number of the geometric series.
 +
*<math>CommonRatio</math> is the difference between the numbers.
 +
*<math>Numbers</math> is the number of the terms to display.
 +
*<math>OnlyNth</math> means it will show the final term of the series.
 +
*Geometric series means a series of numbers or quantities in geometric progression.
 +
*So it is the ratio of successive terms in the series is constant.
 +
*Geometric series using only two terms r and a.
 +
*The term r is the common ratio,and a is the first term of the series.
 +
*The sum of the first n terms of a geometric series is:
 +
<math>a+ar+ar^{2}+ar^{3}+....</math> with <math>r=\frac{1}{2}</math> and <math>a=\frac{1}{2}</math>
 +
*This function will return the result as Error when the parameters are non-numeric.
 +
 
 +
==Examples==
 +
#GEOMETRICSERIES(3,4,8) = 3 12 48 192 768 3072 12288 49152
 +
#GEOMETRICSERIES(3,4,8,5) = 49152
 +
#GEOMETRICSERIES(60.5,9,7) = 60.5 544.5 4900.5 44104.5 396940.5 3572464.5 32152180.5
 +
#2...10000000...6 = 2      12        72          432        2592          15552        93312        559872          3359232
 +
 
 +
==Related Videos==
 +
 
 +
{{#ev:youtube|v=CecgFWTg9pQ|280|center|Geometric Series}}
 +
 
 +
==See Also==
 +
*[[Manuals/calci/HARMONICSERIES | HARMONICSERIES  ]]
 +
*[[Manuals/calci/ARITHMETICSERIES | ARITHMETICSERIES  ]]
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
*[[ Z3 |  Z3 home ]]
 +
 
 +
==References==
 +
*[https://en.wikipedia.org/wiki/Geometric_series Geometric series]
 +
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 03:47, 30 June 2021

GEOMETRICSERIES (Start,CommonRatio,Numbers,OnlyNth)


  • is the minimum number of the series.
  • is the difference of the two numbers in the series.


Description

  • This function returns the value of the Geometric Series.
  • In , is the Initial number of the geometric series.
  • is the difference between the numbers.
  • is the number of the terms to display.
  • means it will show the final term of the series.
  • Geometric series means a series of numbers or quantities in geometric progression.
  • So it is the ratio of successive terms in the series is constant.
  • Geometric series using only two terms r and a.
  • The term r is the common ratio,and a is the first term of the series.
  • The sum of the first n terms of a geometric series is:

with and

  • This function will return the result as Error when the parameters are non-numeric.

Examples

  1. GEOMETRICSERIES(3,4,8) = 3 12 48 192 768 3072 12288 49152
  2. GEOMETRICSERIES(3,4,8,5) = 49152
  3. GEOMETRICSERIES(60.5,9,7) = 60.5 544.5 4900.5 44104.5 396940.5 3572464.5 32152180.5
  4. 2...10000000...6 = 2 12 72 432 2592 15552 93312 559872 3359232

Related Videos

Geometric Series

See Also

References