Page 1 of 1
Problem 835
Posted: Sun Mar 26, 2023 4:11 am
by mdean
For the sake of clarity, is 3-4-5 considered a supernatural triangle? All 3 of its side lengths are consecutive integers.
Re: Problem 835
Posted: Mon Mar 27, 2023 3:13 am
by heteroing
Yes, it is.
Re: Problem 835
Posted: Mon Mar 27, 2023 9:15 am
by pri_gua
Just checking: is 101010 = 1010000000000.
Re: Problem 835
Posted: Mon Mar 27, 2023 1:21 pm
by echip
pri_gua wrote: Mon Mar 27, 2023 9:15 am
Just checking: is 10
1010 = 10
10000000000.
Is there any reason that 10
10 is not equal to 10000000000?

Re: Problem 835
Posted: Tue Mar 28, 2023 7:42 am
by neverforget
pri_gua wrote: Mon Mar 27, 2023 9:15 am
Just checking: is 10
1010 = 10
10000000000.
It is.
Exponentiation is overwhelmingly right-associative, i.e. $a^{b^c}$ denotes $a^{(b^c)}$ and not $(a^b)^c$
Re: Problem 835
Posted: Sun Apr 02, 2023 1:32 pm
by pri_gua
Thanks for clarify-ing.