We call a pair of 2-digit positive integers reversible if their product remains the same when we reverse the digits in both integers.
The above shows that the pairs are reversible.
Which of the following is not reversible?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Mathematica
Select[{{34, 86}, {12, 42}, {14, 82}},Times @@ IntegerReverse@@#==Times@@#&]
returns
{}
which means they are all reversible