Is 19.14^n + 1 Always Not Prime?

  • Thread starter Thread starter kezman
  • Start date Start date
Click For Summary

Homework Help Overview

The discussion revolves around the expression 19*14^n + 1 and whether it can be proven to be non-prime for all integer values of n. Participants are exploring the implications of the expression and the methods of proof applicable to it.

Discussion Character

  • Mixed

Approaches and Questions Raised

  • Some participants question the clarity of the expression, debating whether it should be interpreted as 19 times 14 raised to the power of n or as a decimal. Others suggest exploring the expression's properties by examining specific values of n to identify patterns or counterexamples.

Discussion Status

There is an ongoing exploration of different proof strategies, including induction and counterexamples. Some participants have provided hints and suggestions for approaching the problem, while others express confusion about the requirements of the proof.

Contextual Notes

Participants note the importance of distinguishing between the interpretations of the expression and the implications of proving it for all n versus any n. There is also mention of using modular arithmetic as a potential approach to the proof.

kezman
Messages
36
Reaction score
0
Prove for all n that:

19.14^n + 1

is not prime.

I know I can't do it by induction.
 
Physics news on Phys.org
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)
 
It depends on what you want to prove.

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

or

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

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

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

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

or

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

If you have to prove the first part, you can assume that the expression is prime for all values of n 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:
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:
 
Hint:

19.14 = \frac{1914}{100}.

Regards,
George
 
George Jones said:
Hint:

19.14 = \frac{1914}{100}.

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.
 
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
 
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 (19)(14^{2k+1}) + 1, that is, (19)(14^{2k+1}) + 1 = 3m where m is an integer.

Induction step
(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)

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 (19)(14^{2k}) + 1, that is (19)(14^{2k}) + 1 = 5p where p is an integer.

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

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
19*14^n
is a not prime number.

A hint was to use <br /> \equiv \bmod 3,mod5

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:

Similar threads

Replies
9
Views
3K
Replies
4
Views
3K
Replies
12
Views
4K
Replies
8
Views
4K
  • · Replies 13 ·
Replies
13
Views
2K
Replies
27
Views
4K
Replies
4
Views
2K
Replies
2
Views
2K
  • · Replies 15 ·
Replies
15
Views
2K
  • · Replies 4 ·
Replies
4
Views
4K