Ask Question
13 July, 03:12

Write a function file that accepts the values of r, a and n as arguments and uses a for loop to return the sum of the first n terms of the geometric series. test your function for a = 3, r = 1/2 and n = 10.

+4
Answers (1)
  1. 13 July, 06:27
    0
    Given, a = 3, r = 1/2, n = 10

    %r is common ratio

    %n is number of terms

    %a is the first term of the series

    Sum = 0;

    a = 3;

    r = 1/2;

    for i = 0 : 1 : 10;

    Sum = Sum + a * r ^ i;

    end

    Sum
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write a function file that accepts the values of r, a and n as arguments and uses a for loop to return the sum of the first n terms of the ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers