A348637 Largest clock triangle area.
1, 2, 9, 9, 0, 3, 5, 3, 0, 7, 1, 0, 7, 3, 3, 2, 6, 3, 2, 7, 3, 9, 7, 2, 0, 1, 1, 3, 8, 8, 2, 4, 9, 6, 6, 9, 5, 5, 5, 6, 7, 5, 6, 0, 6, 6, 5, 9, 5, 3, 3, 3, 9, 3, 6, 9, 4, 2, 9, 1, 3, 7, 3, 1, 6, 8, 5, 7, 8, 8, 4, 1, 6, 8, 5, 6, 0, 5, 6, 7, 7, 7, 5, 7, 1, 2, 4, 8, 2, 5, 5, 1, 9, 4, 6, 4, 3, 1, 3, 6, 3, 7, 8, 6, 8
Offset: 1
References
- H. E. Dudeney, Amusements in Mathematics, Dover, 1958, pages 11 and 154; Problem #63, "The Stop-Watch", notes that at times 02:54:35 and 09:05:25 the clock hands are "nearly equidistant" and that "exact equidistance for the three hands is not possible", but does not point out that these two times are the most nearly equidistant times in the 12-hour clock cycle. Of the 430 puzzles in the book, 4 are represented on the front cover illustration; the stop-watch appears in the very center.
Links
- Henry Ernest Dudeney, Amusements in Mathematics, London, New York, Nelson, 1917.
- Henry Ernest Dudeney, Cover illustration of Amusements in Mathematics with clock, New York, Dover, 1958.
Programs
-
Mathematica
f[x_] := (Abs[Sin[2*Pi*x*(1/43200 - 1/3600)] + Sin[2*Pi*x*(1/3600 - 1/60)] + Sin[2*Pi*x*(1/60 - 1/43200)]])/2; RealDigits[FindMaximum[f[x], {x, 10475}, WorkingPrecision -> 110][[1]], 10, 100][[1]] (* Amiram Eldar, Oct 27 2021 *)
Comments