Problem 056

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
robinsmidsrod
Posts: 2
Joined: Fri Aug 28, 2009 12:30 pm

Problem 056

Post by robinsmidsrod »

Considering this text in the problem:
Considering natural numbers of the form, a^(b), where a, b < 100, what is the maximum digital sum?
I have a problem understanding the phrase:
a, b < 100
Does it mean that a AND b both need to be integers larger than 0 and less than 100?

Could "maximal digital sum" be rewritten as maximal sum of all the digits in the number?

I was looking at http://en.wikipedia.org/wiki/Integer and http://en.wikipedia.org/wiki/Natural_number.

A bit down in the Integer article (construction) I see (a, b) which refers to subtraction of a and b. Is this what you mean?
User avatar
hk
Administrator
Posts: 12831
Joined: Sun Mar 26, 2006 10:34 am
Location: Haren, Netherlands

Re: Problem 56

Post by hk »

a,b<100 means a<100 and b<100.
The digital sum of a number is the sum of its digits.
The maximum digital sum is to be interpreted as the largest sum of the digits of any number of the form a^b with a<100 and b<100
Image
War ruins the life and health of untold numbers of innocent children.
robinsmidsrod
Posts: 2
Joined: Fri Aug 28, 2009 12:30 pm

Re: Problem 56

Post by robinsmidsrod »

Thank you for the clarification.
Post Reply