Parts Catalog Accessories Catalog How To Articles Tech Forums
Call Pelican Parts at 888-280-7799
Shopping Cart Cart | Project List | Order Status | Help



Go Back   PeachParts Mercedes-Benz Forum > General Discussions > Off-Topic Discussion

Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 09-25-2010, 01:03 PM
TheDon's Avatar
Ghost of Diesels Past
 
Join Date: Oct 2005
Posts: 13,285
Summation?

How the hell do I do this crap?

http://www.cs.ucf.edu/courses/cop3502/fall2010/assignments/SummationHW.pdf

I never learned this in trig or precalc.. I havent even gotten to fail the test on this yet in calc 1.

Reply With Quote
  #2  
Old 09-25-2010, 01:06 PM
The Swede's Avatar
Registered User
 
Join Date: Mar 2007
Location: Minneapolis, MN
Posts: 286
Quote:
Originally Posted by TheDon View Post
How the hell do I do this crap?
I havent even gotten to fail the test on this yet in calc 1.

Think positive dude!
__________________
'07 Yukon 2500
'13 Subaru Outback 3.6R
'13 Orbea Carpe 9-speed

Currently Benzless
Formerly: 300TD, S600, E55, 560SEL

---= The forest breathes, listen.
-Native American elder
Reply With Quote
  #3  
Old 09-25-2010, 01:09 PM
TheDon's Avatar
Ghost of Diesels Past
 
Join Date: Oct 2005
Posts: 13,285
ok.. well.. How do I do this crap so I can do the homework sheet. I'd like to get something accomplished this weekend since I still dont understand how to code my program that is due in .. 4 days
Reply With Quote
  #4  
Old 09-25-2010, 01:12 PM
Registered Hack
 
Join Date: Mar 2008
Posts: 4,642
do you know C? anything is more than I know.

I will trade you math help for C help.
Reply With Quote
  #5  
Old 09-25-2010, 01:17 PM
TheDon's Avatar
Ghost of Diesels Past
 
Join Date: Oct 2005
Posts: 13,285
I'm not a C guru by any means. I made a B in my intro to C class and am struggling in my comp sci 1 class
Reply With Quote
  #6  
Old 09-25-2010, 01:18 PM
Registered Hack
 
Join Date: Mar 2008
Posts: 4,642
I am just taking an intro to C also. I haven't even looked at the assignments yet, its an online course - at my pace.

I am sure you can do it.
Reply With Quote
  #7  
Old 09-25-2010, 01:19 PM
TheDon's Avatar
Ghost of Diesels Past
 
Join Date: Oct 2005
Posts: 13,285
pfft.. I can't...

what is your assignment I might be of some use
Reply With Quote
  #8  
Old 09-25-2010, 01:25 PM
Registered Hack
 
Join Date: Mar 2008
Posts: 4,642
When you look at the summation notation:

i should enter your mind as 'index' or the indexing number /variable

n is the count, or the the final value of i

so if i=1 and n=5 there will be a math sentence that will be the sum of 5 separate values.

each value is the result of inputting the values of i , and some cases n, into the summation
Reply With Quote
  #9  
Old 09-25-2010, 01:35 PM
TheDon's Avatar
Ghost of Diesels Past
 
Join Date: Oct 2005
Posts: 13,285
so like...#1 in the pdf I linked to..

the top is 2n, the thing to the right is "i" and it indexes at i=5

5(2n)+6(2n)....2n(2n)

?
Reply With Quote
  #10  
Old 09-25-2010, 01:39 PM
Crazy_Nate's Avatar
Registered User
 
Join Date: Jan 2008
Location: Hampton Roads
Posts: 567
Quote:
Originally Posted by jt20 View Post
When you look at the summation notation:

i should enter your mind as 'index' or the indexing number /variable

n is the count, or the the final value of i

so if i=1 and n=5 there will be a math sentence that will be the sum of 5 separate values.

each value is the result of inputting the values of i , and some cases n, into the summation
If you think of stuff in terms of for loops (ah, programming), it's very similar

sum = 0;
n=5;
for i = 1:n
sum = sum + some formula (dependent on n, x, y, z, or the current value of i)
end

Sorry...it's matlab notation, but very similar to C. The colon is basically a integer increment.
__________________
1982 240D, sold 9/17/2008
1987 300D Turbo
W124.133 - 603.960, 722.317 - Smoke Silver Metallic / Medium Red (702/177), acquired 8/15/2009
262,715 and counting
Reply With Quote
  #11  
Old 09-25-2010, 01:41 PM
Registered Hack
 
Join Date: Mar 2008
Posts: 4,642
more like this:

sum(i, i = 5 .. 2*n) = 5+6+7+8 .. 2*n


in each value of the summation, i is increased by the value of 1

like: (i) + (i+1)+(i+2)....(i+n)

n is simply the final value that i (the indexing variable) will be for the summation
Reply With Quote
  #12  
Old 09-25-2010, 01:42 PM
Crazy_Nate's Avatar
Registered User
 
Join Date: Jan 2008
Location: Hampton Roads
Posts: 567
Quote:
Originally Posted by TheDon View Post
so like...#1 in the pdf I linked to..

the top is 2n, the thing to the right is "i" and it indexes at i=5

5(2n)+6(2n)....2n(2n)

?
5 + 6 + 7 + 8 +...+ 2n
__________________
1982 240D, sold 9/17/2008
1987 300D Turbo
W124.133 - 603.960, 722.317 - Smoke Silver Metallic / Medium Red (702/177), acquired 8/15/2009
262,715 and counting
Reply With Quote
  #13  
Old 09-25-2010, 01:49 PM
TheDon's Avatar
Ghost of Diesels Past
 
Join Date: Oct 2005
Posts: 13,285
Quote:
Originally Posted by Crazy_Nate View Post
5 + 6 + 7 + 8 +...+ 2n
that makes sense.

now if I am correct

stop at 100, (3i+4) index starts at ten

(3(10)+4) + (3(11)+4)+ ..... (3(100)+4)


?
Reply With Quote
  #14  
Old 09-25-2010, 01:49 PM
Crazy_Nate's Avatar
Registered User
 
Join Date: Jan 2008
Location: Hampton Roads
Posts: 567
Quote:
Originally Posted by TheDon View Post
that makes sense.

now if I am correct

stop at 100, (3i+4) index starts at ten

(3(10)+4) + (3(11)+4)+ ..... (3(100)+4)


?
__________________
1982 240D, sold 9/17/2008
1987 300D Turbo
W124.133 - 603.960, 722.317 - Smoke Silver Metallic / Medium Red (702/177), acquired 8/15/2009
262,715 and counting
Reply With Quote
  #15  
Old 09-25-2010, 01:50 PM
TheDon's Avatar
Ghost of Diesels Past
 
Join Date: Oct 2005
Posts: 13,285
wrong?

Reply With Quote
Reply

Bookmarks


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 On
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 09:34 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0
Copyright 2024 Pelican Parts, LLC - Posts may be archived for display on the Peach Parts or Pelican Parts Website -    DMCA Registered Agent Contact Page