Proving Rational Sum of n Rational Numbers

In other problems, the statement might be "the sum of the first n odd numbers" or "the sum of the first n prime numbers".)You are correct that you prove the statement is true when n= 2. That's the first "domino" in the "domino effect" you referred to. (That's why it's called "basis".) Then you ASSUME that the statement is true for n= k and use that to prove that it is true for n= k+1. That's the "domino effect". So, assuming the statement is true for n= k, you must show it is true for n= k+1.In this problem, since the statement is "The
  • #1
willbland
7
0

Homework Statement



Prove via Mathematical Induction that, The sum of n rational numbers is rational.

Homework Equations





The Attempt at a Solution



Let N = 1
The sum of one rational number is the number it's self, which is a rational number.

Assume when n = n, the sum of n numbers is rational

proof:

Here's why my problem lies, i don't know what equation this is , or how i would make an equation to sub (n + 1) into ? I'm looking for any guidance that i can get, all help is apreciated..

Thank's alot,
-Will
 
Physics news on Phys.org
  • #2
willbland said:

Homework Statement



Prove via Mathematical Induction that, The sum of n rational numbers is rational.

Homework Equations





The Attempt at a Solution



Let N = 1
The sum of one rational number is the number it's self, which is a rational number.
I would start with n = 2, and show that a/b + c/d is a rational number.
willbland said:
Assume when n = n, the sum of n numbers is rational
Assume that when n = k, r1 + r2 + ... + rk is a rational number.
willbland said:
proof:

Here's why my problem lies, i don't know what equation this is , or how i would make an equation to sub (n + 1) into ? I'm looking for any guidance that i can get, all help is apreciated..
What is the statement you need to prove when n = k + 1?
 
  • #3
Thank's a lot for your help Mark, you really steered me in the right direction here.

I proved that when n=2 the sum was rational using a/b + c/d etc etc etc, but after i assume that when n=n , for all natural numbers the sum is rational, isn't that as far as you'd think i would have to go? I mean there's no domino effect needed for this proof , just that the sum of n natural numbers is rational, or , do i have to do the n + 1 thing and prove for every n ? but i don't understand how i would go about doing that, :(
 
  • #4
assume that when n=n

If you're ever in a situation where n is not equal to n, induction will be the least of your worries.

It doesn't sound like you completely understand what induction is supposed to be saying. You have to do two things: Prove the statement is true when n=2, which it sounds like you did, and prove that if the statement is true when n=k, it's true when n=k+1

For example, can you prove that the sum of three rational numbers is rational, using the fact that the sum of two rational numbers is rational? Can you prove that the sum of four rational numbers is rational, using the fact that the sum of three rational numbers is rational? Try to generalize this this for any k
 
  • #5
If you are allowed to use "the sum of two rational numbers is rational" then the problem is easy: If [itex]r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k[/itex] is rational, then [itex]r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k+ r_{k+1}[/itex][itex]= (r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k)+ r_{k+1}[/itex], the sum of two rational numbers.

Of course, you can prove that the sum of two rational numbers is rational by:
[tex]\frac{a}{b}+ \frac{c}{d}= \frac{ad+ bc}{bd}[/tex].
 
  • #6
Office_Shredder said:
If you're ever in a situation where n is not equal to n, induction will be the least of your worries.

It doesn't sound like you completely understand what induction is supposed to be saying. You have to do two things: Prove the statement is true when n=2, which it sounds like you did, and prove that if the statement is true when n=k, it's true when n=k+1

For example, can you prove that the sum of three rational numbers is rational, using the fact that the sum of two rational numbers is rational? Can you prove that the sum of four rational numbers is rational, using the fact that the sum of three rational numbers is rational? Try to generalize this this for any k

I'm kind of confused by this post.

Here's my understanding of induction,
Your proving that it's true for when n = 2, then your assuming it's true for any number n, then you have to prove that if n is true, then n + 1 is true, and so on.

Your basically proving that it's true for all n > 1 because of the domino effect. I'm still troubled by how to prove n + 1 in this particular proof.

HallsofIvy said:
If you are allowed to use "the sum of two rational numbers is rational" then the problem is easy: If [itex]r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k[/itex] is rational, then [itex]r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k+ r_{k+1}[/itex][itex]= (r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k)+ r_{k+1}[/itex], the sum of two rational numbers.

Of course, you can prove that the sum of two rational numbers is rational by:
[tex]\frac{a}{b}+ \frac{c}{d}= \frac{ad+ bc}{bd}[/tex].

I did prove that the sum of two rational numbers was rational that exact way, but i don't know how to take it to the next step and prove that n + 1 is rational :(

So far I've just proven that when n = 2, the sum is rational,

now i assume when n = k the sum is rational, and have to prove that when n = k + 1 the sum is rational, but I'm completely lost when it comes to doing this for this particular proof.
:(
 
  • #7
willbland said:
I'm kind of confused by this post.

Here's my understanding of induction,
Your proving that it's true for when n = 2, then your assuming it's true for any number n, then you have to prove that if n is true, then n + 1 is true, and so on.

Your basically proving that it's true for all n > 1 because of the domino effect. I'm still troubled by how to prove n + 1 in this particular proof.
Part of your confusion might be in the terminology. There's a statement in this and every induction proof, that depends on n in some way. For this problem, it is "The sum of n rational numbers is a rational number."

It doesn't make a whole lot of sense to talk about the sum of one rational number, so we can assume that n is at least 2. For each value of n >= 2, we get a different statement. E.g,
S(2): The sum of 2 rational numbers is a rational number.
S(3): The sum of 3 rational numbers is a rationa number.
.
.
.
S(k): The sum of k rational numbers is a rational number.
S(k + 1): The sum of k + 1 rational numbers is a rational number.
.
.
.

You're not trying to "prove n + 1"; you're trying to prove that the n + 1st statement is true, given that the nth statement is true.



willbland said:
I did prove that the sum of two rational numbers was rational that exact way, but i don't know how to take it to the next step and prove that n + 1 is rational :(

So far I've just proven that when n = 2, the sum is rational,

now i assume when n = k the sum is rational, and have to prove that when n = k + 1 the sum is rational
When n = k, you are assuming that r1 + r2 + ... + rk is a rational number.

Now, what statement are you trying to prove when n = k + 1, and how can you use your assumption to do this?
willbland said:
l, but I'm completely lost when it comes to doing this for this particular proof.
willbland said:
:(
 
  • #8
Notice that I said, before, :"if [itex]r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k[/itex] is rational, then [itex]r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k+ r_{k+1}[/itex][itex]= (r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k)+ r_{k+1}[/itex] is the sum of two rational numbers".

I intentionally used "k" rather than "n" to avoid confusing the "induction step" with the statement in the theorem. But the important point is that since [itex]r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k[/itex] is a rational number, then [itex]= (r_1+ r_2+ r_3+ \cdot\cdot\cdot+ r_k)+ r_{k+1}[/itex] is just the sum of two rational numbers, and so rational!
 

1. What is the definition of a rational number?

A rational number is any number that can be expressed as a ratio of two integers, where the denominator is not equal to zero.

2. Can you provide an example of a rational number?

Examples of rational numbers include 1/2, 0.75, -3/4, and 2/3.

3. What is the formula for finding the sum of n rational numbers?

The formula for finding the sum of n rational numbers is: (a/b) + (c/d) + (e/f) + ... = (ad + bc + ef + ...) / (bd).

4. How do you prove the sum of n rational numbers is rational?

To prove the sum of n rational numbers is rational, we need to show that the resulting fraction can be simplified to the form of a rational number. This can be done by finding the greatest common divisor (GCD) of the numerator and denominator, and dividing both by the GCD. If the resulting fraction can be expressed as a ratio of two integers, then it is rational.

5. Are there any exceptions to the rule that the sum of n rational numbers is rational?

No, there are no exceptions to this rule. As long as all the numbers being added are rational, the sum will always be rational as well.

Similar threads

  • Precalculus Mathematics Homework Help
Replies
8
Views
1K
  • Precalculus Mathematics Homework Help
Replies
24
Views
5K
  • Precalculus Mathematics Homework Help
Replies
5
Views
259
  • Precalculus Mathematics Homework Help
Replies
5
Views
2K
  • Precalculus Mathematics Homework Help
Replies
3
Views
2K
  • Precalculus Mathematics Homework Help
Replies
2
Views
2K
  • Precalculus Mathematics Homework Help
Replies
12
Views
2K
  • Precalculus Mathematics Homework Help
Replies
4
Views
1K
  • Precalculus Mathematics Homework Help
Replies
12
Views
3K
  • Precalculus Mathematics Homework Help
Replies
14
Views
2K
Back
Top