Thread Closed

Is this correct? (sum of two rational numbers is rational)

 
Share Thread Thread Tools
Jun2-10, 03:41 AM   #1
 

Is this correct? (sum of two rational numbers is rational)


The problem statement, all variables and given/known data

"Prove that the sum of two rational numbers is a rational number."

I just started on proof writing, so I'll just like to verify if I'm not missing anything here, and get some comments about the style.

The attempt at a solution

Theorem. If [tex]a,b \in \mathbb{Q}[/tex] then [tex]a+b \in \mathbb{Q}[/tex]

Proof. Given [tex]a,b \in \mathbb{Q}[/tex]
we have some [tex]p_1,p_2,q_1,q_2 \in \mathbb{Z}[/tex] satisfying

[tex]a=\dfrac{p_1}{q_1} \, b=\dfrac{p_2}{q_2}[/tex]

which implies that

[tex]a+b
=\dfrac{p_1}{q_1}+\dfrac{p_2}{q_2}
=\dfrac{p_{1}q_{2}+p_{2}q_{1}}{q_{1}q_{2}}[/tex]

By closure of [tex]\mathbb{Z}[/tex] under addition and multiplication, it follows from the assumption that [tex]p_1,p_2,q_1,q_2 \in \mathbb{Z}[/tex] that

[tex]p_{1}q_{2}+p_{2}q_{1}[/tex] and [tex]q_{1}q_{2}[/tex] are also integers.

Hence, [tex]a+b[/tex] can be expressed as the ratio of 2 integers. By definition, [tex]a+b[/tex] is rational. [tex]\square[/tex]
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Ants and carnivorous plants conspire for mutualistic feeding
>> Forecast for Titan: Wild weather could be ahead
>> Researchers stitch defects into the world's thinnest semiconductor
Jun2-10, 05:34 AM   #2
 
Recognitions:
Gold Membership Gold Member
Homework Helper Homework Help
Science Advisor Science Advisor
Retired Staff Staff Emeritus
Looks good.
Jun2-10, 05:56 AM   #3
 
^Ah, great! Thanks.

One question though... is it immediately obvious that [tex]\mathbb{Z}[/tex] is closed under addition/multiplication? Is there a proof for this? I mean, this one's still rather easy, but I find it hard to verify that some given finite group has closure... say... {1, 9, 16, 22, 29, 53, 74, 79, 81} under multiplication modulo 91?
Jun2-10, 06:26 AM   #4
D H
 
Mentor

Is this correct? (sum of two rational numbers is rational)


Quote by ephedyn View Post
[tex]a=\dfrac{p_1}{q_1} \, b=\dfrac{p_2}{q_2}[/tex]

which implies that

[tex]a+b
=\dfrac{p_1}{q_1}+\dfrac{p_2}{q_2}
=\dfrac{p_{1}q_{2}+p_{2}q_{1}}{q_{1}q_{2}}[/tex]
How does the first imply the second? It doesn't. Yes, I'm being picky here, but you are doing proofs, ephedyn. Pickiness is essential in proofs.

To prove that the sum of two rationals is rational, you need
  1. A definition of what exactly constitutes a rational number.
    Hint: 0 and 1 are integers. 0/1 is a rational, but 1/0 is not. Why not?
  2. A definition of the sum of two rationals.
    This is why I asked the question at the start of this post. How is the sum of two rationals defined?
  3. Proof that this definition always yields a rational.
    You need to use the correct definition of what constitutes a rational (item 1 above) here.
Jun2-10, 07:09 AM   #5
 
Recognitions:
Gold Membership Gold Member
Homework Helper Homework Help
Science Advisor Science Advisor
Retired Staff Staff Emeritus
D H has brought up good points you need to address. I should have thought about it much more carefully before saying your proof was okay.
Jun5-10, 07:08 AM   #6
 
Quote by D H View Post
How does the first imply the second? It doesn't. Yes, I'm being picky here, but you are doing proofs, ephedyn. Pickiness is essential in proofs.

To prove that the sum of two rationals is rational, you need
  1. A definition of what exactly constitutes a rational number.
    Hint: 0 and 1 are integers. 0/1 is a rational, but 1/0 is not. Why not?
  2. A definition of the sum of two rationals.
    This is why I asked the question at the start of this post. How is the sum of two rationals defined?
  3. Proof that this definition always yields a rational.
    You need to use the correct definition of what constitutes a rational (item 1 above) here.
Okay, thanks. I gave it some serious thought and rewrote it. But it doesn't look very different from my previous one, and looks much more long-winded so maybe I'm still wrong >_<. How would you change it:

Theorem The sum of any two rational numbers is rational.

Let [tex]\mathbb{Q}[/tex] denote the set of all rational numbers

Definition Any number [tex]n \in \mathbb{Q} \iff n = \dfrac{p}{q} [/tex], where [tex]p,q \in \mathbb{Z} : q>0[/tex]

Consider the sum of any two numbers [tex]a, b[/tex],

[tex]a+b[/tex]

Assuming [tex]a, b \in \mathbb{Q}[/tex]
then by definition,

[tex]a+b=\dfrac{p_1}{q_1}+\dfrac{p_2}{q_2}=\dfrac{p_{1}q_{2}+p_{2}q_{1}}{q_{ 1}q_{2}}[/tex]

for some [tex]p_{1},p_{2},q_{1},q_{2} \in \mathbb{Z}: q_{1},q{2}>0,[/tex]

By closure of [tex]\mathbb{Z}[/tex] under addition and multiplication, it follows that [tex]p_{1}q_{2}+p_{2}q_{1}[/tex] and [tex]q_{1}q_{2}[/tex] are also integers. Also, since we have [tex]q_{1},q{2}>0[/tex], [tex]q_{1}q{2}>0[/tex]. Hence, [tex]\left( a+b \right) \in \mathbb{Q}[/tex]
Jun5-10, 07:18 AM   #7
 
^Also, I have a question... am I missing [tex]gcd(p,q)=1[/tex] from the definition? Does it affect the proof?
Jun5-10, 08:01 AM   #8
D H
 
Mentor
Much improved. There is one minor issue: is 2/-1 a rational? It is not per your definition. The constraint on the denominator is that it is a non-zero integer rather than a positive integer.

My main objections to your original proof were
  • Your use of the word "implies." p1/q1 + p2/q2 = (p1q2+p2q1)/(q1q2) by definition. The word "implies" has a special meaning in proofs.
  • That the numerator and denominator are integers does not suffice. The denominator cannot be zero.
You have addressed those objections.

Here is a proof that is a bit shorter than your proof. Note well: This proof, like yours, is an informal proof.

Given p1/q1, p2/q2 ∈ ℚ, then p1, q1, p2, q2 ∈ ℤ and q1, q2 ≠ 0. By definition, p1/q1+p2/q2= (p1q2+p2q1)/(q1q2). The numerator p1q2+p2q1 and denominator q1q2 are integers by closure of multiplication and addition of the integers. Moreover, q1q2 ≠ 0 since neither q1 nor q2 is zero. Thus p1/q1+p2/q2 is a rational.
Jun5-10, 08:17 AM   #9
 
Your use of the word "implies." p1/q1 + p2/q2 = (p1q2+p2q1)/(q1q2) by definition. The word "implies" has a special meaning in proofs.
Much improved. There is one minor issue: is 2/-1 a rational? It is not per your definition. The constraint on the denominator is that it is a non-zero integer rather than a positive integer.
Noted!

OK, thanks a lot for your advice. That's much more concise indeed.
Thread Closed
Thread Tools


Similar Threads for: Is this correct? (sum of two rational numbers is rational)
Thread Forum Replies
Limit of rational function to rational power Calculus & Beyond Homework 4
the sum of rational numbers General Math 7
Rational Numbers General Math 6
Proving or Disproving rational raised to rational is rational number Calculus & Beyond Homework 7
Irrational numbers depends on rational numbers existence General Math 0