25.5k views
1 vote
Please help i dont know how to solve

Please help i dont know how to solve-example-1

1 Answer

6 votes

Answer:

sum(2^(n+1), for n=1 to 6)

Explanation:

To answer this question, you need to know two things:

  • what is an expression for the n-th term
  • how many terms are there

__

The series shown is a geometric series with first term 4 and common ratio 8/4 = 2. The generic form of the n-th term is ...

an = a1×r^(n-1) . . . . first term a1, common ratio r

You can use this form directly in your summation expression, or you can simplify it a bit.

an = 4×2^(n-1) = (2^2)(2^(n-1)) = 2^(n-1+2)

an = 2^(n+1)

__

The value 128 is 2^7, so n+1 = 7, or n=6 for that term

Your summation expression could be ...


\displaystyle\sum_(n=1)^6{2^(n+1)}

_____

Additional comment

The n-th term can also be written as 2×2^n.

User HSchmale
by
7.7k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.

9.4m questions

12.2m answers

Categories