answersLogoWhite

0


Best Answer

Answer: 97

Well the easiest way to figure that out is to start with the largest double digit prime and work backwards. There are not that many.
Here are all the double digit primes:

11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97


The answer is 97 since 79 is also prime. See we did not have to look too far if we start with the largest double digit prime!

97 does not work because 79 is composite.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the largest double digit prime number that when written in reverse is also a prime number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you figure out what the largest double digit prime number that when written in reverse is also a prime number?

It is 97. it is largest, because it is the largest double digit prime number.


What is the largest prime number that backwards is also a prime number?

There is no largest one, as there will always potentially be other pair such that one is the reverse of the other.


What is the largest double digit prime number?

97


Which number is written from the largest to the smallest?

10?


What is the largest number ever written down?

ininity


Design an algorithm to find a reverse of number?

An example of an algorithm that will reverse a number is written as such, digit reverse(num), while (num>0) then, digit =num%10. This particular algorithm divides a number by 10 until the original number from the LSD is found.


How can the largest number be written using one for ones?

1


C plus plus most accurate and largest range number variable?

double (or, on some platforms, long double)


What is the largest number that can be written with three 2's?

It probably is: 222


Which is the largest number that can be written using three 2s?

4194304 = 222


What is the smallest 3-digit number which doesn't change if the digitss are written in reverse order?

de


Write an algorithm to read two numbers then display the largest?

Read 2 numbers. If first is larger than second, display second, else display first. That's for the smallest. For the largest reverse the two. For each of the other two, it's easier to just create a variable, call it largest. Initialize it to a very small number, say -1. As you read each number, compare it to largest. If the number is larger than largest, set largest equal to the number. When you finish each list of numbers, then print largest. Best answer Read 2 numbers. If first is larger than second, display second, else display first. That's for the smallest. For the largest reverse the two. For each of the other two, it's easier to just create a variable, call it largest. Initialize it to a very small number, say -1. As you read each number, compare it to largest. If the number is larger than largest, set largest equal to the number. When you finish each list of numbers, then print largest.