Closed Thread
Results 1 to 7 of 7

Thread: Graphing Calculator Question : Sigma Notation

  1. #1
    jaybird0827's Avatar
    jaybird0827 is offline. Puritanboard Postgraduate
    Join Date
    Jun 2006
    Location
    Indian Trail, NC
    Posts
    4,146
    Blog Entries
    10
    Thanks
    1,060
    Thanked 456 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
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

  2. #2
    Grymir's Avatar
    Grymir is offline. Puritanboard Graduate
    Join Date
    Jan 2008
    Location
    Davenport, IA
    Posts
    3,257
    Thanks
    694
    Thanked 750 Times in 508 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. #3
    jwithnell's Avatar
    jwithnell is offline. Puritanboard Junior
    Join Date
    Apr 2008
    Location
    Leesburg, VA
    Posts
    1,433
    Thanks
    166
    Thanked 639 Times in 394 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!

  4. The Following User Says Thank You to jwithnell For This Useful Post:

    jaybird0827 (11-29-2008)

  5. #4
    Grymir's Avatar
    Grymir is offline. Puritanboard Graduate
    Join Date
    Jan 2008
    Location
    Davenport, IA
    Posts
    3,257
    Thanks
    694
    Thanked 750 Times in 508 Posts
    Cool! Thanks. I thought it was strange that the calculator couldn't do it.
    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!

  6. #5
    Neopatriarch's Avatar
    Neopatriarch is offline. 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
    Last edited by Neopatriarch; 11-22-2008 at 09:36 PM. Reason: changed a 2 to a 1
    Chris
    Independent Baptist
    Michigan
    Layman
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

  7. #6
    jwithnell's Avatar
    jwithnell is offline. Puritanboard Junior
    Join Date
    Apr 2008
    Location
    Leesburg, VA
    Posts
    1,433
    Thanks
    166
    Thanked 639 Times in 394 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.
    JWithnell
    Member Bethel OPC
    Virginia
    http://learningyesican.blogspot.com/
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

  8. The Following User Says Thank You to jwithnell For This Useful Post:

    jaybird0827 (11-29-2008)

  9. #7
    jaybird0827's Avatar
    jaybird0827 is offline. Puritanboard Postgraduate
    Join Date
    Jun 2006
    Location
    Indian Trail, NC
    Posts
    4,146
    Blog Entries
    10
    Thanks
    1,060
    Thanked 456 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.
    ~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
    Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

Closed Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

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