Le Monde puzzle [#847]

Another X’mas Le Monde mathematical puzzle:

A regular dice takes the values 4, 8 and 2 on three adjacent faces. Summit values are defined by the product of the three connected faces, e.g., 64 for the above. What values do the three other faces take if the sum of the eight summit values is 1768? 

Here is the simple R code I used to find a solution:

summi=function(x){
  #(x[1],x[2],x[3]) opposed to (4,8,2)
  sum(outer(c(2,x[1]),outer(c(8,x[2]),c(4,x[3]),"*"),"*"))}
faces=matrix(sample(1:20,3*10^4,rep=T),ncol=3)
resum=apply(faces,1,summi)
sol=faces[resum==1768,]

with the result:

> sol
     [,1] [,2] [,3]
[1,]    2   18   13
[2,]    2   18   13
[3,]    2   18   13
[4,]    6    5   13

which means the missing faces are (6,5,13) since the puzzle also imposed all faces were different. The following histogram of the sample of sums shows a reasonable gamma G(1.9,1763)  fit.

lemonde847

2 Responses to “Le Monde puzzle [#847]”

  1. Can we be sure that there is not another solution to the problem?
    Why 1:20 and not 1:21?

    Great blog!

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.