Problem 835

A place to air possible concerns or difficulties in understanding ProjectEuler problems. This forum is not meant to publish solutions. This forum is NOT meant to discuss solution methods or giving hints how a problem can be solved.
Forum rules
As your posts will be visible to the general public you are requested to be thoughtful in not posting anything that might explicitly give away how to solve a particular problem.

This forum is NOT meant to discuss solution methods for a problem.

In particular don't post any code fragments or results.

Don't start begging others to give partial answers to problems

Don't ask for hints how to solve a problem

Don't start a new topic for a problem if there already exists one


See also the topics:
Don't post any spoilers
Comments, questions and clarifications about PE problems.
Post Reply
mdean
Posts: 206
Joined: Tue Aug 02, 2011 2:05 am

Problem 835

Post by mdean »

For the sake of clarity, is 3-4-5 considered a supernatural triangle? All 3 of its side lengths are consecutive integers.
Image
User avatar
heteroing
Posts: 80
Joined: Thu Sep 10, 2020 10:23 am
Contact:

Re: Problem 835

Post by heteroing »

Yes, it is.
Image
pri_gua

Re: Problem 835

Post by pri_gua »

Just checking: is 101010 = 1010000000000.
echip
Posts: 39
Joined: Sat Feb 15, 2014 6:51 pm

Re: Problem 835

Post by echip »

pri_gua wrote: Mon Mar 27, 2023 9:15 am Just checking: is 101010 = 1010000000000.
Is there any reason that 1010 is not equal to 10000000000? :shock:
User avatar
neverforget
Posts: 88
Joined: Sat Sep 16, 2006 10:10 pm

Re: Problem 835

Post by neverforget »

pri_gua wrote: Mon Mar 27, 2023 9:15 am Just checking: is 101010 = 1010000000000.
It is.

Exponentiation is overwhelmingly right-associative, i.e. $a^{b^c}$ denotes $a^{(b^c)}$ and not $(a^b)^c$
Image
pri_gua

Re: Problem 835

Post by pri_gua »

Thanks for clarify-ing.
Post Reply