Computing Finite Power Series Sums in MATLAB: A Beginner's Guide

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 5K views
DaniRiethmill
Messages
1
Reaction score
0
I having trouble trying to compute the sum of a finite power series with matlab.Basically, the problem says to take x=0.5 and compute the sum of a series for n=5, n=10, n=25, and n=100 and for all coefficients ai=1. It also says to use the operation .^ and command sum(v) that takes a vector and returns the sum of its elements. Then to do the same thing with x=1/4 and x=2/3. I guess my real problem is that I have very little MATLAB experience and don't even know where to start.
 
Physics news on Phys.org
DaniRiethmill said:
I having trouble trying to compute the sum of a finite power series with matlab.Basically, the problem says to take x=0.5 and compute the sum of a series for n=5, n=10, n=25, and n=100 and for all coefficients ai=1. It also says to use the operation .^ and command sum(v) that takes a vector and returns the sum of its elements. Then to do the same thing with x=1/4 and x=2/3. I guess my real problem is that I have very little MATLAB experience and don't even know where to start.

Welcome to the PF.

You have to show some effort before we can offer much tutorial help -- them's the rules here at the PF.

So, how would you code this in C? Or in any other programming language that you know.

When you use the MATLAB Help feature, what does it show you for computing sums, and for raising numbers to powers?