top of page

Summation Notation

  • Writer: Nathaniel Hillert
    Nathaniel Hillert
  • Oct 22, 2018
  • 2 min read

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

Recent Posts

See All
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...

 
 
 
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:...

 
 
 

תגובות


Post: Blog2_Post

Subscribe Form

Thanks for submitting!

©2018 by Nathaniel Hillert. Not so proudly created with Wix.com

  • Facebook
  • Twitter
  • LinkedIn
bottom of page