Prove by Induction: 13n - 6n Divisible by 7

  • Thread starter pauliedangerous
  • Start date
  • Tags
    Induction
In summary, the conversation is discussing the proof by induction that for every positive integer (n), 13n - 6n is divisible by 7. The conversation includes an example from notes that helps explain the concept, and shows the steps in the proof. The conversation also mentions the importance of paying attention to parentheses in mathematical calculations.
  • #1
pauliedangerous
4
0
can anyone help me with this - my notes make this slightly confusing and struggling to finsih it.

prove by induction that fo0r every positive integer (n) that 13n - 6n is divisible by 7

ive got so far:

(n = 1) = 13(1) - 6(1) = 7 which is divisible by 7

n(k+1) = 13(k+1) - 6(k+1)
= 13(1).13(k) - 6(1).6(k)
= 13.13k - 6.6k

then stuck as my notes with examples give calculations tht i don't usnderstand where they come from il post them if you can explain it.

example from my notes:

Question 8: Where n is an integer prove that the expression 7n – 2n is exactly divisible by 5.
Hint: 7k+1 – 2k+1 can be written as 7k.71 – 2k.21 i.e. 7k.7 – 2k.2

Question 8: It holds for P(1) = 71 – 21 = 5 which is exactly divisible by 5.
Inductive step: Consider P(k+1) assuming P(k) is true.
P(k +1) = 7k+1 – 2k+1
= 71.7k - 21.2k
= 7.7k - 2.2k
= 7k + 6.7k - 2k - 2k splitting up the terms 7.7k and 2k
= (7k - 2k) + 6.7k - 2k and (7k - 2k) = P(k)
= P(k) + 6.7k - 2k
= P(k) + 5.7k + 7k - 2k splitting up the term 6.7k
= P(k) + 5.7k + P(k) 7k - 2k is P(k)
This expression and thus P(k+1) is exactly divisible by 5 since both expressions P(k) and 5.7k are exactly divisible by 5.

P(1) is true and P(k)→P(k+1), so by the principle of induction P(n) holds for all n.


thanks for any help
 
Physics news on Phys.org
  • #2
You have:
p(k+1) = 13(k+1) - 6(k+1)
= 13(1).13(k) - 6(1).6(k)
= 13.13k - 6.6k

Note 13x = 12x + x and 6y = 5y + y. Let x = 13k and y = 6k.

You can continue as:
p(k+1) = 12 13k + 13k - (5 6k + 6k) = 12 13k - 5 6k + (13k - 6k) = 156k - 30k + p(k)
...

You should pay attention to your parentheses, e.g. 7k + 1 is different from 7(k+1).
 
  • #3


To prove by induction that 13n - 6n is divisible by 7 for every positive integer (n), we will follow these steps:

Step 1: Show that the statement is true for n = 1.

We have 13(1) - 6(1) = 7, which is divisible by 7. So, the statement is true for n = 1.

Step 2: Assume that the statement is true for n = k.

This means that 13k - 6k is divisible by 7. (This is our inductive hypothesis.)

Step 3: Show that the statement is also true for n = k + 1.

We have 13(k+1) - 6(k+1) = 13k + 13 - 6k - 6. Now, using our inductive hypothesis, we can replace 13k - 6k with a multiple of 7. So, we have:

13(k+1) - 6(k+1) = (a multiple of 7) + 13 - 6 = (a multiple of 7) + 7 = (a multiple of 7) + 7 - 7 + 7 = (a multiple of 7) + 7 - 7 + 7 - 7 + 7 = (a multiple of 7) + 7(1) - 7(1) + 7(1) - 7(1) + 7(1) = (a multiple of 7) + 7(1 - 1 + 1 - 1 + 1) = (a multiple of 7) + 7(0) = (a multiple of 7)

This shows that 13(k+1) - 6(k+1) is also a multiple of 7. So, the statement is true for n = k + 1.

Step 4: By the principle of mathematical induction, we can conclude that the statement is true for all positive integers (n).

Therefore, we have proven by induction that 13n - 6n is divisible by 7 for every positive integer (n).
 

1. What is the principle of mathematical induction?

The principle of mathematical induction is a method of proof used to show that a statement is true for all natural numbers. It involves two steps: the base case, where the statement is shown to be true for the first natural number, and the inductive step, where it is shown that if the statement is true for a particular natural number, then it is also true for the next natural number.

2. How does mathematical induction apply to the given statement?

For the statement "13n - 6n is divisible by 7", mathematical induction can be used to show that this statement is true for all natural numbers. The base case would be n = 1, where 13(1) - 6(1) = 7, which is divisible by 7. The inductive step would then show that if the statement is true for n, it is also true for n+1, thus proving the statement for all natural numbers.

3. What is the proof by induction for the given statement?

The proof by induction for the statement "13n - 6n is divisible by 7" would involve showing that the statement is true for the base case n=1, and then using the inductive step to show that if the statement is true for n, it is also true for n+1. This would involve manipulating the equation 13(n+1) - 6(n+1) to show that it is also divisible by 7.

4. Can you give an example to demonstrate the use of induction in proving the statement?

As an example, let's prove that 13n - 6n is divisible by 7 for n=3. The base case n=1 would give us 13(1) - 6(1) = 7, which is divisible by 7. For the inductive step, assume that the statement is true for n=3. This would mean that 13(3) - 6(3) = 21 is divisible by 7. Now, for n+1=4, we have 13(4) - 6(4) = 42, which is also divisible by 7. Therefore, the statement is true for n=4 as well.

5. Are there any limitations to using mathematical induction?

Yes, there are limitations to using mathematical induction. It can only be used to prove statements that are true for all natural numbers. It cannot be used for real numbers or other types of numbers. Additionally, it may not be the most efficient method of proof for certain statements, and other methods may be more appropriate.

Similar threads

  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
928
  • Precalculus Mathematics Homework Help
Replies
17
Views
1K
Replies
5
Views
2K
  • Calculus and Beyond Homework Help
Replies
3
Views
2K
  • Math Proof Training and Practice
Replies
10
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
0
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
2K
  • Calculus and Beyond Homework Help
Replies
5
Views
1K
Replies
7
Views
3K
  • Set Theory, Logic, Probability, Statistics
Replies
4
Views
5K
Back
Top