This puzzle of mine will enable to test your ingenuity in solving problems quickly, applying all your previous experience to get the correct answer in minimal time.
Start your timer.
Imagine being interviewed for a job of your best dreams.
The letters in the equation below represent POSITIVE INTEGERS.
You are asked to provide the value of t as accurate as possible.
Free to use brains, paper, calculator, friends...
Given:
t^2=Sqrt(116^m+611^n+225^q)
Your answer:
Stop the timer.
Time spent:.
Your comments:
digits 70
best=1;
for m=vpa(1:12)
for n=vpa(1:12)
for q=vpa(1:12)
t=(116^m+611^n+225^q)^(1/4);
f=abs(t-round(t));
if f<best
best=f;bt=t;
bm=m;bn=n;bq=q;
end
end
end
end
disp(best)
disp(bt)
disp([bm bn bq])
finds
m=1, n=12, q=1 leads to t= 228099131.00000000000000000000000718329158...
|
Posted by Charlie
on 2023-05-26 18:32:14 |