Difference between revisions of "Manuals/calci/ARITHMETICSERIESCORE"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''ARITHMETICSERIESCORE (Start,Difference,Numbers,OnlyNth)'''</div><br/> *<math>Start</math> is the initial number. *<math>Difference</math> is the...")
 
Line 10: Line 10:
 
*<math>Numbers</math> is the numbers to display in the arithmetic series.
 
*<math>Numbers</math> is the numbers to display in the arithmetic series.
 
*An arithmetic series is the sum of the terms of an arithmetic sequence.
 
*An arithmetic series is the sum of the terms of an arithmetic sequence.
*If the initial term is <math>a_1</math> and the common difference between consecutive number is d,then the nth term of the sequence <math>a_n</math> is given by <math>a_n= a_1+(n-1)d</math>.
+
*If the initial term is <math>a_1</math> and the common difference between consecutive number is <math>d</math>,then the nth term of the sequence <math>a_n</math> is given by <math>a_n= a_1+(n-1)d</math>.
 +
 
 +
==Examples==
 +
#ARITHMETICSERIESCORE(3,7,8) = 3 10 17 24 31 38 45 52
 +
#ARITHMETICSERIESCORE(39,-12,6) = 39 27 15 3 -9 -21
 +
#ARITHMETICSERIESCORE(54,19.23,7) = 54 73.23 92.46000000000001 111.69 130.92000000000002 150.15 169.38
 +
 
 +
==See Also==
 +
*[[Manuals/calci/ARITHMETICSERIES| ARITHMETICSERIES]]
 +
*[[Manuals/calci/SERIESSUM| SERIESSUM]]
 +
*[[Manuals/calci/SUM| SUM]]
 +
 
 +
==References==
 +
*[http://www.mathwords.com/a/arithmetic_series.htm  Arithmetic Series]
 +
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
*[[ Z3 |  Z3 home ]]

Revision as of 13:53, 30 May 2017

ARITHMETICSERIESCORE (Start,Difference,Numbers,OnlyNth)


  • is the initial number.
  • is the constant difference of two numbers.
  • numbers to display in the series.

Description

  • This function shows the series of given numbers.
  • In , is the starting number of the series.
  • is the constant difference between the two consecutive terms.
  • is the numbers to display in the arithmetic series.
  • An arithmetic series is the sum of the terms of an arithmetic sequence.
  • If the initial term is and the common difference between consecutive number is ,then the nth term of the sequence is given by .

Examples

  1. ARITHMETICSERIESCORE(3,7,8) = 3 10 17 24 31 38 45 52
  2. ARITHMETICSERIESCORE(39,-12,6) = 39 27 15 3 -9 -21
  3. ARITHMETICSERIESCORE(54,19.23,7) = 54 73.23 92.46000000000001 111.69 130.92000000000002 150.15 169.38

See Also

References