top of page
Search
  • Writer's pictureNathaniel Hillert

Summation Notation

Updated: Oct 24, 2018

Roughly 23 minutes.


Ahh, isn't that just super fun to say? "Summation Notation" is displayed with the capitol Greek letter Sigma ( Σ ). Anyway, let us get started.

  1. Create a new program and name it "SUMMNOTA" (Or whatever will help you remember what it is)

  2. Press "prgm", go to the "I/O" tab, and select "Input"

  3. Type ""EXPRESSION (USING X): "", then press comma (Omit "(USING X)" if on TI-83)

  4. Press "vars", go to "String" and select "Str1". Start a new line

  5. Repeat step 2 and type ""START ",Y". Start a new line

  6. Repeat step 2 and type ""END ",Z". Start a new line

  7. Get "Str1" again and press "sto→"

  8. Press "vars", go to the "Y-VARS" tab, go to "Function", and select "Y₁". Start a new line

  9. FOR TI-84 (Skip to FOR TI-83 if you have a TI-83):

  10. Press "math" and select "summation Σ("

  11. Get "Y₁" again and type ",X,Y,Z)→S". Start a new line

  12. FOR TI-83:

  13. Press "2nd" "stat", go to the "MATH" tab, and select "sum("

  14. Press "2nd" "stat", go to the "OPS" tab, and select "seq("

  15. Get "Y₁" again and type ",X,Y,Z,1))→S". Start a new line

  16. FOR BOTH:

  17. Press "prgm", go to the "I/O" tab, select "Disp", and type "S"

  18. The programs should look accordingly:

TI-84

:Input "EXPRESSION (USING X): ",Str1

:Input "START: ",Y

:Input "END: ",Z

:Str1→Y

:Σ(Y₁,X,Y,Z)→S

:Disp S


TI-83

:Input "EXPRESSION: ",Str1

:Input "START: ",Y

:Input "END: ",Z

:Str1→Y

:sum(seq(Y₁,X,Y,Z,1))→S

:Disp S



Explanation time! Firstly, the reason we have to store our expression as a string first is because we cannot store an input directly to Y₁, and the reason we have to store the string as Y₁, is because summation and sequence will not use strings as input data. This was the happy medium. Secondly, summation on the TI-83 is NOT a thing, so we have to add up a list of numbers, following the rule we put in. What those variables mean is seq(rule,variable,first,last,increment), and sum will add all the numbers that are output. Lastly, what the variables in summation are: Σ(rule,variable,bottom,top). Summation notation, or sigma notation, is denoted with the rule to the right, the starting variable on bottom, and the final variable on top, which is what we input with this program. Basically, this program will make your math life easier, and if you decide to play with it a little more to understand it fully, you can even write your own programs for other math classes.


Give this a like if it was helpful. Drop a comment if you have a question or need help. Thanks for reading!


-Nate

24 views0 comments

Recent Posts

See All

Standard Deviation with 2 Variables

Roughly 8 minutes. This a super useful program for anyone taking a statistics class. The only reason I have this listed under "Intermediate" is that I'd rather you have the understanding of these thin

Law of Cosine

Law of Cosine isn't as used as Law of Sine, but it's pretty important when you're in a pinch. Let us get started. Create a new program and name it "LOCS" (For Law Of CoSine) Press "prgm", go to the "I

Law of Sine

So, one of the big things you will be using in any math class is "Law of Sine". For anyone that doesn't know what Law of Sine is: Sin(A)/a = Sin(B)/b = Sin(C)/c. The sides are always inversely proport

Post: Blog2_Post
bottom of page