vector elements and exponential

28 views (last 30 days)
marie
marie on 20 Feb 2013
Show that lim n -->inf (1+1/n)^n=e
Do this by first creating a vector n that has the elements: 1 10 100 500 1000 2000 4000 and 8000. Then, create a new vector y in which each element is determined from the elements of n by (1+1/n)^n
Compare the elements of y with the value of e (type exp(1) to obtain the value of e)
I have done
n = [1 10 100 500 1000 2000 4000 8000]
and using the formula
y=(1 + (1./n)).^n
exp(1)
fprintf('the value of y is %6.3f while exp(1) is %8.3f\n'y,exp(1))
for some reason when I do fprintf the value that it gives are different to the values obtained in "y"
  1 Comment
marie
marie on 20 Feb 2013
Do i need to do exp(1), exp(10) and so on? and compare it to the values obtained from y?

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 20 Feb 2013
Because your "n" is a vector, your "y" is a vector, but your "fprintf" is designed for scalar y and scalar exp(1).
When you use fprintf, each numeric item is used for the next available format code, and at the end of the format string, fprintf goes back and starts from the beginning of the format string again. Thus if you had
A = 1:3;
fprintf('A = %f, B = %g\n', A, exp(1))
then A(1) would be matched against the %f, A(2) would be matched against the %g, then the format string would be reused again so A(3) would be matched against the %f, and then since A was finished, exp(1) would be matched on the next format code, the %g. Result:
A = 1, B = 2
A = 3, B = 2.71
Any individual format code such as %f is not re-used "in place" until a vector is finished. You would not get
A = 1 2 3, B = 2.71
To get that effect, you would use:
fprintf('A =')
fprintf(' %f', y)
fprintf(', B = %g\n', exp(1))

Categories

Find more on Cell Arrays in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!