» Site Navigation | | | » Online Users: 112 | | 27 members and 85 guests | | Backwoods Presbyterian, Bodigean, cpomann, David J Houston, gene_mingo, Grillsy, HokieAirman, Ivan, jpfrench81, Kevin, matthew11v25, Montanablue, nleshelman, PactumServa72, Rangerus, Rich Koster, SolaScriptura, StainlessThroughGrace, TaylorOtwell, TaylorWest, uberkermit, Zenas | | Most users ever online was 856, 07-06-2007 at 12:19 AM. | |  | 
11-22-2008, 01:58 PM
|  | Puritanboard Postgraduate | | Join Date: Jun 2006 Location: Indian Trail, NC
Posts: 4,175
Thanks: 1,080
Thanked 452 Times in 296 Posts
| | | Graphing Calculator Question : Sigma Notation
Anyone here have a TI-83 or TI-84 graphing calculator?
I'm trying to find a way to do "Sigma Notation" sums. I would think there should be a way that we could pull up a Sigma, give it a function with an interval of values, run it and get the sum.
Here's a simple example.
10
SIGMA n^2
n = 1
[Enter] should give me the sum total of 1 + 9 + 16 + ... + 100.
Is there something built-in, or do I need write and store a program in the calculator to do it?
| 
11-22-2008, 08:09 PM
|  | Puritanboard Graduate | | Join Date: Jan 2008 Location: Davenport, IA
Posts: 3,222
Thanks: 682
Thanked 732 Times in 497 Posts
| | |
I have a TI-86, and it doesn't appear to do it exactly like you wanted. You could graph it using the graphing function, and then use the tracing feature to find the answers. But I would program it using a simple for next loop to print the results.
| 
11-22-2008, 09:15 PM
|  | Puritanboard Junior | | Join Date: Apr 2008 Location: Leesburg, VA
Posts: 1,232
Thanks: 154
Thanked 546 Times in 334 Posts
| | |
Hi,
I'm jwithnell's husband -- I'm a math teacher, and the ti-83 has a couple of functions that will allow you to do what you are asking.
The first is seq() and the other is sum(). You get to both through the 2nd LIST button: seq() through 2nd LIST OPS, sum through 2nd LIST MATH.
The seq function takes an expression, then a variable to increment, the start value, the end value and then an optional step size. What it generates is a list of values of the expression. So seq(x^2, x, 1, 100, 1) would generate the values 1, 4, 9, 16, ... 10000.
The second function, sum(), will then add the values in a list, so it becomes very easy to do the sigma through the two functions. sum(seq(x^2,x,1,100))
which will then produce the final answer you want 338350. Of course for that particular series, there is a formula ... but I leave that as an exercise for the student! (hint: it is a cubic function)
| | The Following User Says Thank You to jwithnell For This Useful Post: | | 
11-22-2008, 09:24 PM
|  | Puritanboard Graduate | | Join Date: Jan 2008 Location: Davenport, IA
Posts: 3,222
Thanks: 682
Thanked 732 Times in 497 Posts
| | |
Cool! Thanks. I thought it was strange that the calculator couldn't do it.
| 
11-22-2008, 09:35 PM
|  | Puritanboard Freshman | | Join Date: Feb 2008 Location: Portage, MI
Posts: 68
Thanks: 12
Thanked 11 Times in 8 Posts
| | Quote:
Originally Posted by jaybird0827
10
SIGMA n^2
n = 1 | I use a Voyage 200 now. If I need to find the sum from 1 to 11 of x^3, I enter:
sigma(x^3, x, 1, 11)
to get 4356. I think the TI-83 works the same.
For my problem, the summation formula is:
(n^2(n+1)^2)/4 with n=11
__________________
Chris
Independent Baptist
Michigan
Layman
Last edited by Neopatriarch; 11-22-2008 at 09:36 PM.
Reason: changed a 2 to a 1
| 
11-23-2008, 10:21 PM
|  | Puritanboard Junior | | Join Date: Apr 2008 Location: Leesburg, VA
Posts: 1,232
Thanks: 154
Thanked 546 Times in 334 Posts
| | |
jwithnell's husband again.
If you want to use a different calculator, the TI-89 has an actual sigma (uses the greek sigma) that you enter the expression, variable, start, and stop values. You get to it through the calculus functions (f3 key in "normal" home). It will do the summation symbolically, as well as nearly any other math symbolically, so you can get a useful answer.
The 83 and 84 series you have to combine the functions I mention above.
If you have Microsoft Math, you can also enter the expression directly on the computer. I believe the TI-nspire also includes a sigma.
| | The Following User Says Thank You to jwithnell For This Useful Post: | | 
11-29-2008, 03:59 PM
|  | Puritanboard Postgraduate | | Join Date: Jun 2006 Location: Indian Trail, NC
Posts: 4,175
Thanks: 1,080
Thanked 452 Times in 296 Posts
| |
I downloaded a program called SIGMA to my TI-84. It's kind of clunky because you have to press [enter] as many times as you have terms in the sequence. It's okay if you have like 4 or 5 terms or so. -----Added 11/29/2008 at 03:59:29 EST-----
Using the TI-84, I followed the suggestion below; although I found that when I did SEQ first and then SUM I had to do SUM(2nd ANS) and that worked fine. I like it because I can compute the sum of the series in the second step rather than having to keep track of how many times I press [enter]. I like the "nested function" version even better that does it in one step, e.g. sum(seq(x^2,x,1,100)). Thank you jwithnell's husband! Quote:
Originally Posted by jwithnell Hi,
I'm jwithnell's husband -- I'm a math teacher, and the ti-83 has a couple of functions that will allow you to do what you are asking.
The first is seq() and the other is sum(). You get to both through the 2nd LIST button: seq() through 2nd LIST OPS, sum through 2nd LIST MATH.
The seq function takes an expression, then a variable to increment, the start value, the end value and then an optional step size. What it generates is a list of values of the expression. So seq(x^2, x, 1, 100, 1) would generate the values 1, 4, 9, 16, ... 10000.
The second function, sum(), will then add the values in a list, so it becomes very easy to do the sigma through the two functions. sum(seq(x^2,x,1,100))
which will then produce the final answer you want 338350. Of course for that particular series, there is a formula ... but I leave that as an exercise for the student! (hint: it is a cubic function) |
Last edited by jaybird0827; 12-01-2008 at 08:05 PM.
|  | | Thread Tools | | | | Display Modes | Linear Mode |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | |