Suppose, you are making five digit numbers by only using the numbers 1, 2, 3, 4, 5 without repetition. What is the value of the sum of all of this numbers?
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.
There is no "highest". There is only one solution. If you add all the possible five digit combinations you get 3999960.
For each possibility for each digit, there are 4! combinations, e.g. there are 4! five digit numbers starting with 5 (e.g. 54321, 53421, etc..).
This means that when we add up the possible digits in each place we get 5x4!+4x4!+3x4!+2x4!+1x4! = 360.
Times this by 11111 for each of the digits to get the total. 360x11111 = 3999960.