Formulas for Arithmetical and Geometrical Progression

In summary, the conversation discusses the use of memorization in learning math and the importance of understanding the derivation of formulas instead. The formulas for arithmetic and geometric progressions are explained, as well as a trick for finding the sum of a geometric progression. The importance of series, particularly infinite series, in mathematics is also mentioned. The conversation ends with a discussion on the geometric interpretation of the geometric series.
  • #1
fde645
50
1
Memorization, a contemptuous, futile, and insignificant method of learning math is, I think, not the solution to my problem. Well for the arithmetical progression, I have the formula:

Let: l= last term
a= first term
d= common difference

l= a+[d(n-1)]

And for the geometrical progression;

Let: l= last term
a= first term
r= common ratio

l= a(r^n-1)

and also,

for the getting the sum;

Let: l= last term
r= common ratio
a= first term

S= lr-a/ r-1

Now given these formulas, I have no idea how it is derived. I tried to formulate it on my own but I don't know how these equation was created. Please, give me tips to discern how a formula is made.
 
Mathematics news on Phys.org
  • #3
fde645 said:
Memorization, a contemptuous, futile, and insignificant method of learning math is, I think, not the solution to my problem.
I agree! Memorizing simple formulas that are used often can be a time-saver, but one must also understand where the formulas come from, and if they are simple enough, there is no need to memorize at all; you can just derive them on demand. These formulas are a good example of this.

Well for the arithmetical progression, I have the formula:

Let: l= last term
a= first term
d= common difference

l= a+[d(n-1)]
First thing to recognize is that an arithmetical progression with first term = ##a## and common difference = ##d## simply looks like this: ##a, a+d, a+2d, a+3d, \ldots##. So the first term is ##a##, the second term is ##a+d##, the third term is ##a+2d##, and so forth. In general, the ##n##'th term is ##a+(n-1)d##. That's all there is to it. I see no point even memorizing such a simple thing.

You can make a very similar argument for the geometric progression: the first term is ##a##, the second term is ##ar##, the third term is ##ar^2##, and in general, the ##n##'th term is ##ar^{n-1}##.

The sum of the geometric progression is more interesting. Here, if you want to sum the first ##n## terms, you need to evaluate ##S = a + ar + ar^2 + \ldots + ar^{n-1}##. All of the terms have a common factor ##a##, so we can factor it out to get ##S = a(1 + r + r^2 + \ldots + r^{n-1})##. So the key is to find
$$T = 1 + r + r^2 + \ldots + r^{n-1}$$
Note that we can multiply the entire equation by ##r## to obtain
$$rT = r + r^2 + \ldots + r^{n-1} + r^n$$
Now (great trick) subtract the second equation from the first, to obtain
$$T - rT = 1 - r^n$$
since all the other terms cancel. Now divide both sides by ##1-r## to get
$$T = \frac{1 - r^n}{1-r}$$
Thus
$$S = aT = a \frac{1 - r^n}{1-r}$$
is the answer you want. Note that it is valid as long as ##r \neq 1##. Can you find another formula for the ##r=1## case?
 
Last edited:
  • #4
jbunniii said:
First thing to recognize is that an arithmetical progression with first term = ##a## and common difference = ##d## simply looks like this: ##a, a+d, a+2d, a+3d, \ldots##. So the first term is ##a##, the second term is ##a+d##, the third term is ##a+2d##, and so forth. In general, the ##n##'th term is ##a+(n-1)d##. That's all there is to it. I see no point even memorizing such a simple thing.

You can make a very similar argument for the geometric progression.

Hmmm... So I guess the book that I derived this from was just for introducing this concept. Its called Arithmetic for the practical man by Thomson.
I never saw it that way, pretty interesting stuff. Thanks!

What is the importance of series? or infinite series by the way? Sorry if I sound so ignorant since I really am. I heard its really important in higher mathematics.
 
  • #5
When I first read your post I didn't notice you were also asking about the SUM of the geometric progression, which is more interesting. So I added some info about that to my previous response.
 
  • #6
fde645 said:
What is the importance of series? or infinite series by the way? Sorry if I sound so ignorant since I really am. I heard its really important in higher mathematics.

There are various reasons. One of the reasons is to be able to calculate and approximate functions. For example, if you want to calculate ##\sin(x)##, then expanding it in an infinite series will help. If you then take enough terms of the series, then you will have a real good approximation of the sine.
 
  • #7
micromass said:
There are various reasons. One of the reasons is to be able to calculate and approximate functions. For example, if you want to calculate ##\sin(x)##, then expanding it in an infinite series will help. If you then take enough terms of the series, then you will have a real good approximation of the sine.

This is reason why mathematics is counter intuitively cool, I wish I know higher math right now, oh well.
 
  • #8
jbunniii said:
When I first read your post I didn't notice you were also asking about the SUM of the geometric progression, which is more interesting. So I added some info about that to my previous response.

Oh no its my fault, I poorly arranged my post. Thank you so much.
 
  • #9
By the way, the geometric series has (surprise!) a nice geometric interpretation, for example when ##r=1/2##. The sum ##S = 1/2 + 1/4 + 1/8 + 1/16 + \ldots## adds up to ##1## in the limit, because it is formed by adding half of the unit square (1/2), then half of the remaining area (1/4), then half of the remaining area (1/8), etc. See the pictures here:

https://sites.google.com/site/butwhymath/m/geometric-series-visually
 
  • #10
jbunniii said:
By the way, the geometric series has (surprise!) a nice geometric interpretation, for example when ##r=1/2##. The sum ##S = 1/2 + 1/4 + 1/8 + 1/16 + \ldots## adds up to ##1## in the limit, because it is formed by adding half of the unit square (1/2), then half of the remaining area (1/4), then half of the remaining area (1/8), etc.

And that's one of the examples used to help solve Zeno's turtle paradox. Isn't it?
 
  • #11
adjacent said:
And that's one of the examples used to help solve Zeno's turtle paradox. Isn't it?
Yes, as I understand it, one form of Zeno's "paradox" is that since 1 can be expressed as 1/2 + 1/4 + 1/8 + 1/16 + ..., it's impossible to move 1 meter because it requires taking infinitely many smaller steps. What he didn't seem to consider is that the time required for each step is also shrinking geometrically, so the total time required is of course finite.
 
  • #12
jbunniii said:
By the way, the geometric series has (surprise!) a nice geometric interpretation, for example when ##r=1/2##. The sum ##S = 1/2 + 1/4 + 1/8 + 1/16 + \ldots## adds up to ##1## in the limit, because it is formed by adding half of the unit square (1/2), then half of the remaining area (1/4), then half of the remaining area (1/8), etc. See the pictures here:

https://sites.google.com/site/butwhymath/m/geometric-series-visually

I have a problem with visualizing fractions... I just can't picture it. I don't know why. :)))
 
  • #13
fde645 said:
I have a problem with visualizing fractions... I just can't picture it. I don't know why. :)))
The easiest way for me is to visualize a circle. ##\frac{1}{2}## means 1 out of two.So you have total two parts and you select one from there.Similarly, if you have ##1 \over 100##.You have total 100 parts and you select 1 from there.

Once you get the general idea,it will be as easy as pie.
 
  • #14
Oh, of course, I know that visualization, but in some ways, for example, dividing a fraction by a fraction, I can't visualize it through a circle or a square but through a number line only. But I think I got the idea of adding a unit fraction by a unit fraction visually.
 
  • #15
fde645 said:
Oh, of course, I know that visualization, but in some ways, for example, dividing a fraction by a fraction
Dividing by a fraction is the same as multiplying by the reciprocal of the fraction. In this way you can turn any division problem into an equivalent multiplication problem.

For example, instead of, say (1/2)/(1/3), this is the same as (1/2) * (3/1), or 3/2.

fde645 said:
, I can't visualize it through a circle or a square but through a number line only. But I think I got the idea of adding a unit fraction by a unit fraction visually.
 
  • #16
I didn't mean that. I meant to say, I can't visualize dividing a fraction by a fraction with the use of a figure, or shape, like circles or squares, but I can do the operation, abstractly, using numbers. Although I can picture it using the number line. And also, I can't visualize multiplying a fraction by a fraction using a model, using a figure, a shape, such as circle and square.
 
  • #17
fde645 said:
I didn't mean that. I meant to say, I can't visualize dividing a fraction by a fraction with the use of a figure, or shape, like circles or squares, but I can do the operation, abstractly, using numbers. Although I can picture it using the number line.
There's nothing wrong with that. The number line is a very good way to visualize division of fractions. If I have a line segment of length 1/2 and I want to subdivide it into line segments of length 1/8, how many do I need? Answer: 4. This is a perfectly good visualization of
$$\frac{1/2}{1/8} = 4$$
In my opinion, trying to visualize it using squares or circles introduces unnecessary clutter.
 
  • #18
Never mind, guys, I completely see now visually how multiplication of fractions works using shapes.
 

1. What is the formula for finding the sum of an arithmetic progression?

The formula for finding the sum of an arithmetic progression is:
S = (n/2)(2a + (n-1)d)
where S is the sum, n is the number of terms, a is the first term, and d is the common difference.

2. How do you find the nth term of a geometric progression?

The formula for finding the nth term of a geometric progression is:
an = a1rn-1
where an is the nth term, a1 is the first term, and r is the common ratio.

3. What is the formula for finding the sum of a geometric progression?

The formula for finding the sum of a geometric progression is:
S = (a1(1-rn))/(1-r)
where S is the sum, a1 is the first term, r is the common ratio, and n is the number of terms.

4. How do you find the common ratio of a geometric progression?

To find the common ratio of a geometric progression, divide any term by the previous term. This will give you the value of r.

5. What is the difference between an arithmetic and geometric progression?

An arithmetic progression is a sequence of numbers where the difference between consecutive terms is constant. A geometric progression is a sequence of numbers where the ratio between consecutive terms is constant. In other words, in an arithmetic progression, the terms increase or decrease by a fixed amount, while in a geometric progression, the terms increase or decrease by a fixed ratio.

Similar threads

Replies
1
Views
787
Replies
3
Views
957
Replies
7
Views
2K
  • General Math
Replies
3
Views
2K
Replies
20
Views
1K
Replies
2
Views
4K
  • General Math
Replies
3
Views
1K
  • General Math
Replies
2
Views
929
Replies
6
Views
2K
  • General Math
Replies
6
Views
2K
Back
Top