Microsoft Excel Help - Sum a Series Function

  • Thread starter Thread starter conquertheworld5
  • Start date Start date
  • Tags Tags
    Excel
AI Thread Summary
The discussion revolves around the challenge of summing a complex mathematical function involving constants and a series from n=1 to n=10. The original poster struggles to find a suitable summation function in spreadsheet software. A suggestion is made to create a two-column setup in the spreadsheet, with the first column listing numbers 1 through 10 and the second column containing the formulas for each n, allowing for a manual summation. However, there is criticism of using spreadsheets for complex computations, with a recommendation to switch to more advanced tools like Matlab, which can handle such functions more efficiently and allow for easy adjustments in the number of terms in the summation.
conquertheworld5
Messages
22
Reaction score
0
this is rather embarrassing, but it's late, i have a headache and can't figure this out.

so i have this complicated function i need to sum (not sum as in add up - sum as in sum a series).
my formula that needs to be summed:
(2/(n*pi))*sin(n*pi*z/L)*e^(-(n^2)*pi*pi*k*t/(L^2))

pi, z, L, k, t are constants, i want sum n from 1 to 10... i looked through all the "sum" functions but i couldn't find a summation in which i could enter a function to be summed.

help?
Thanks
 
Technology news on Phys.org
Set the first column to the numbers 1 thru 10, then in the second column, set up your formulas for each n and sum down the column.
 
So, I was waiting for somebody to say it... :)

In my opinion, spreadsheet is a braindead tool for any computation past what you'd jot on a piece of paper in a grocery store. If one doesn't intend to compute anything more complicated than that in the nearby future, spreadsheet might be a reasonable way to go.

Otherwise, I recommend switching to a tool that could support exactly what OP originally had in mind (passing one function to another), and, say, doesn't require more than flicking one number in order to increase or decrease the number of terms in the summation. Which would be just about any tool, e.g. the ubiquitous Matlab.

--
Chusslove Illich (Часлав Илић)
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top