Is 19.14^n + 1 Always Not Prime?

  • Thread starter kezman
  • Start date
In summary, to prove that for all n, 19*14^n + 1 is not a prime number, one can use induction by considering odd and even values of n separately and showing that the expression is divisible by 3 and 5 respectively. One can also use congruence to show that if 19*14^(2n+1) + 1 is divisible by 3, then so is 19*14^(2(n+1)+1) + 1.
  • #1
kezman
37
0
Prove for all n that:

[tex]19.14^n + 1 [/tex]

is not prime.

I know I can't do it by induction.
 
Physics news on Phys.org
  • #2
Maybe this isn't the direction that they wanted to go, but I find it sufficient to prove that the decimal 0.14^n will never end in 0 (without adding trailing 0's)
 
  • #3
It depends on what you want to prove.

Do you want to prove that [itex]19*14^{n}+1[/itex] is not prime for all [itex]n[/itex]?

or

Do you want to prove that [itex]19*14^{n}+1[/itex] is not prime for any [itex]n[/itex]?

If you have to prove the first part, you can assume that the expression is prime for all values of [itex]n[/itex] and find a contradiction.

I think its the second part that you want to prove (thats why you're invoking induction).
 
  • #4
maverick280857 said:
It depends on what you want to prove.

Do you want to prove that [itex]19*14^{n}+1[/itex] is not prime for all [itex]n[/itex]?

or

Do you want to prove that [itex]19*14^{n}+1[/itex] is not prime for any [itex]n[/itex]?

If you have to prove the first part, you can assume that the expression is prime for all values of [itex]n[/itex] and find a contradiction.

I think its the second part that you want to prove (thats why you're invoking induction).

I'm confused. What do you mean by "for all n". Do you mean prove that some 'n' value exists where that expression is composite?

That doesn't need contradiction, just a counterexample : (19)(14^1) + 1 = (3)(89):confused:

I'm pretty sure that what's required is a proof of the latter proposition (any n).
 
Last edited:
  • #5
Well if I say that "prove that the number is not prime for all n", your strategy should basically be to find some value of n for which the number is not prime. This means that the statement "the number is prime for all n" is false since you have found a value of n for which it does not hold. And if it doesn't hold for at least one value, it obviously doesn't hold for all values. Do you see what I mean?

As for the second question "prove that the number is not prime for ANY n", you have to have an exhaustive proof which proves the statement for all possible values of n. This is the tricky one.

Feel free to get this clarified if there is any doubt...

EDIT: the contradiction I have given (for n = 1 or 2 for example) is what you're calling the counterexample Curious3141 :approve:
 
  • #6
Hint:

[tex]19.14 = \frac{1914}{100}.[/tex]

Regards,
George
 
  • #7
George Jones said:
Hint:

[tex]19.14 = \frac{1914}{100}.[/tex]

Regards,
George

Wait, wait, wait.

Does the OP mean (integer) 19 *times* 14^n plus one

or

(the decimal) 19.14^n + 1 ?:rolleyes:

I always assumed the former.

BTW, I've always found that '.' = times shorthand in math to be one of the dumbest, most unnecessary sources of confusion.
 
  • #8
Curious3141 said:
Wait, wait, wait.

Does the OP mean (integer) 19 *times* 14^n plus one

or

(the decimal) 19.14^n + 1 ?:rolleyes:

I always assumed the former.

BTW, I've always found that '.' = times shorthand in math to be one of the dumbest, most unnecessary sources of confusion.

I think you're absolutely correct. :blushing:

I thought that since the OP went to the trouble of texing the expression,
that \cdot would have been used for multiplication.

Regards,
George
 
  • #9
Actually, it's very easy to prove this by induction. Induce on odds and evens separately.

Note that for the first few odd values of n, the number is divisible by 3. For the first few even values of n, the number is divisible by 5. We want to prove that the pattern holds true for all odd and even n separately.

First consider the odd values of n

Prove it for n = 1 : (19)(14) + 1 = (89)(3)

Inductive hypothesis, for some k, 3 divides [tex](19)(14^{2k+1}) + 1[/tex], that is, [tex](19)(14^{2k+1}) + 1 = 3m[/tex] where m is an integer.

Induction step
[tex](19)(14^{2k+3}) + 1 = (3724)(14^{2k+1}) + 1 = (3705)(14^{2k+1}) + (19)(14^{2k+1}) + 1 = (3)((5)(247)(14^{2k+1}) + m)[/tex]

Observe that 3705 = (3)(5)(247). Using the inductive hypothesis, that whole expression is divisible by 3.

Do the same thing for evens.

Prove it for n = 0 : 19+1 = 20 which is divisible by 5.

Inductive hypothesis, for some k, 5 divides [tex](19)(14^{2k}) + 1[/tex], that is [tex](19)(14^{2k}) + 1 = 5p[/tex] where p is an integer.

Induction step
[tex](19)(14^{2k+2}) + 1 = (3724)(14^{2k}) + 1 = (3705)(14^{2k}) + (19)(14^{2k}) + 1 = (5)((3)(247)(14^{2k}) + p)[/tex]

Observe that 3705 = (3)(5)(247). Using the inductive hypothesis, that whole expression is divisible by 5.

We're done now.
 
Last edited:
  • #10
When completely lost, don't be afraid to do some calculations. Factor this expression for say n=0, 1, 2, ..., 5 (or higher if need be). Do you see any pattern appearing in the factors? You should be able to make a conjecture based on this, then try to prove it.

edit-ahh well nevermind, the answer is laid out for you now, despite you having shown no work. by the way, it's not necessary to use induction, and of course there's nothing unusual about performing induction on sequences of integers.
 
Last edited:
  • #11
There are probably lots of ways of showing this. I spit it up into even and odd n. When n is even, I write 19 = 20 - 1 and show using induction that the original expression is divisible 5. This can also be shown by looking at last digits.

When n is odd, I write 19 = 18 + 1 and show using induction that the original expression is divisible 3.

Regards,
George
 
  • #12
I just connected again and I couldn't believe all the responses. Thanks for all of them.
it was to prove that for all n
[tex] 19*14^n [/tex]
is a not prime number.

A hint was to use [tex]
\equiv \bmod 3,mod5 [/tex]

I knew there were different ways to work this out at first but I couldn't find any with induction. I have always difficulties with finding patterns.
 
Last edited:
  • #13
Oh, c'mon! You corrected the "19.14" versus "19*14" confusion but you forgot the "+ 1"! Of course, 19*14n is never prime for n a positive interger- it's divisible by 19!

You want to show that 19*14n+ 1 is never a prime number. You might want to look at what happens for n even and n odd separately.

For example, 19*141+ 1= 267= 3(89) and so is divisible by 3 (i.e. is congruent to 0 mod 3). Can you show that if 19*142n+1+ 1 is divisible by 3 then so is 19*142(n+1)+1+1?
 
  • #14
sorry I did forget +1
 
Last edited:

FAQ: Is 19.14^n + 1 Always Not Prime?

What does "Proof: 19.14^n + 1 Not Prime" mean?

The phrase "Proof: 19.14^n + 1 Not Prime" is a statement that indicates that a mathematical proof has been provided to show that the expression 19.14^n + 1 is not a prime number. This means that the expression can be factored into smaller numbers, making it a composite number.

How was it proven that 19.14^n + 1 is not a prime number?

The proof for this statement involves using mathematical techniques such as factorization and divisibility rules to show that 19.14^n + 1 can be written as a product of smaller numbers, making it a composite number rather than a prime number. This proof can be verified and replicated by other mathematicians.

Why is it important to prove that 19.14^n + 1 is not a prime number?

Proving that 19.14^n + 1 is not a prime number is important because it adds to our understanding and knowledge of number theory. It also helps us to identify patterns and properties of numbers, which can have practical applications in fields such as cryptography and computer science.

What is the significance of using 19.14 in the expression 19.14^n + 1?

The specific value of 19.14 used in this expression is not significant in itself. It is simply an example of a number that, when raised to the power of n and added to 1, can be proven to be composite rather than prime. Similar proofs can be made using other values in place of 19.14.

Can the proof for 19.14^n + 1 Not Prime be applied to other numbers?

Yes, the same proof technique can be applied to other numbers in place of 19.14. This can help to prove whether an expression is prime or composite, and can also lead to further insights and discoveries in number theory.

Back
Top