The PuritanBoard  

Go Back   The PuritanBoard > General Forums > Computers & Technology

Computers & Technology Bible software, computer support questions and other helpful technology matters

Closed Thread
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-22-2008, 01:58 PM
jaybird0827's Avatar
Puritanboard Postgraduate
 
Join Date: Jun 2006
Location: Indian Trail, NC
Posts: 4,175
Blog Entries: 10
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?
__________________
~Jay~
Husband of ENS, father of J II. | Indian Trail, NC
disabled - cancer
Communicant Member, Precentor | Presbyterian Reformed Church of Charlotte, NC | Presbyterian Reformed Church

zzzzzz ...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2 (permalink)  
Old 11-22-2008, 08:09 PM
Grymir's Avatar
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.
__________________
Timothy Johnson
First United Presbyterian of Moline
PCUSA (Yea, I know)
Theology/Philosophy Sunday School Teacher
Davenport, IA
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3 (permalink)  
Old 11-22-2008, 09:15 PM
jwithnell's Avatar
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)
__________________
JWithnell
Member Bethel OPC
Virginia
http://learningyesican.blogspot.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
The Following User Says Thank You to jwithnell For This Useful Post:
jaybird0827 (11-29-2008)
  #4 (permalink)  
Old 11-22-2008, 09:24 PM
Grymir's Avatar
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5 (permalink)  
Old 11-22-2008, 09:35 PM
Neopatriarch's Avatar
Puritanboard Freshman
 
Join Date: Feb 2008
Location: Portage, MI
Posts: 68
Thanks: 12
Thanked 11 Times in 8 Posts
Quote:
Originally Posted by jaybird0827 View Post

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6 (permalink)  
Old 11-23-2008, 10:21 PM
jwithnell's Avatar
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
The Following User Says Thank You to jwithnell For This Useful Post:
jaybird0827 (11-29-2008)
  #7 (permalink)  
Old 11-29-2008, 03:59 PM
jaybird0827's Avatar
Puritanboard Postgraduate
 
Join Date: Jun 2006
Location: Indian Trail, NC
Posts: 4,175
Blog Entries: 10
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 View Post
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Powered by vBadvanced CMPS v3.2.0

All times are GMT -5. The time now is 07:12 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Copyright © 2002-2008 PuritanBoard.com
Hosted by WebsiteMaven - helping ministries with web hosting advice, reviews, and design.
67 Westminster Abbey © Confessional Presbyterian Presses - used with permission.
Add Our Custom Button to your Google Toolbar

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69