Add new comment

Solution to "Three-digit numbers"

May 1998

When we write a three-digit number in base-ten we are really saying "so many hundreds", "so many tens" and "so many units". If our number is n and the digits are represented by x, y and z (reading from left to right) then we can write:

n = 100x + 10y + z

We are told that

y = x + z

Therefore

n = 100x + 10(x + z) + z

n = 110x + 11z

n = 11(10x + z)

therefore n must be divisible by 11!

Filtered HTML

  • Web page addresses and email addresses turn into links automatically.
  • Allowed HTML tags: <a href hreflang> <em> <strong> <cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.