Maybe I'm too pessimistic, but given 20 random adults, I'd expect maybe 10 of them to be able to get a 10 digit multiplication problem correct in 25 minutes under that kind of pressure.Kirby wrote:I bet Araban's solution takes advantage of the 20 bystanders. There are 20 possible digits (10 per x).
Arithmetic problem from Tobaku Haouden Zero.
- daniel_the_smith
- Gosei
- Posts: 2116
- Joined: Wed Apr 21, 2010 8:51 am
- Rank: 2d AGA
- GD Posts: 1193
- KGS: lavalamp
- Tygem: imapenguin
- IGS: lavalamp
- OGS: daniel_the_smith
- Location: Silicon Valley
- Has thanked: 152 times
- Been thanked: 330 times
- Contact:
Re: Arithmetic problem from Tobaku Haouden Zero.
That which can be destroyed by the truth should be.
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com
- Cassandra
- Gosei
- Posts: 1334
- Joined: Wed Apr 28, 2010 11:33 am
- Rank: German 1 Kyu
- GD Posts: 0
- Has thanked: 14 times
- Been thanked: 153 times
Re: Arithmetic problem from Tobaku Haouden Zero.
If there are enough pencils and paper, parallel processing might be possible.Kirby wrote:I bet Araban's solution takes advantage of the 20 bystanders. There are 20 possible digits (10 per x).
There are 20 helpers, so let them calculate the squares with
xx = 00, 05, 10, ... , 95.
After the first run, the hero will find that 20 gives a result below 2, 25 a result above.
For the second run, the hero can let his helpers calculate in steps of .4, i. e.
20.4, 20.8, 21.2, ..., with the result that 23.6 is below and 24.0 is above 2.
The third, and decisive, run is the one for the hero, who calculates 23.9, with a result above 2.
So he can be sure that xx is 23.
The really most difficult Go problem ever: https://igohatsuyoron120.de/index.htm
Igo Hatsuyōron #120 (really solved by KataGo)
Igo Hatsuyōron #120 (really solved by KataGo)
-
BobC
- Lives with ko
- Posts: 198
- Joined: Sat Nov 27, 2010 2:02 pm
- Rank: lol
- GD Posts: 0
- KGS: DrBobC
- Tygem: 35kyu
- Has thanked: 4 times
- Been thanked: 23 times
Re: Arithmetic problem from Tobaku Haouden Zero.
I think you can bastardise Taylors theorem for this.
Take given: 1.41421356
1.41421356 - square it..
then turn the 56 into 57 - square it ( with one f the helpers)
then turn 56 into 565 - square it..
compare answers to 2 then interpolate and repeat with increasing precision...
it's like playing the "hi lo guess a number game". Should get it out in about 7 squares..
Take given: 1.41421356
1.41421356 - square it..
then turn the 56 into 57 - square it ( with one f the helpers)
then turn 56 into 565 - square it..
compare answers to 2 then interpolate and repeat with increasing precision...
it's like playing the "hi lo guess a number game". Should get it out in about 7 squares..
-
hyperpape
- Tengen
- Posts: 4382
- Joined: Thu May 06, 2010 3:24 pm
- Rank: AGA 3k
- GD Posts: 65
- OGS: Hyperpape 4k
- Location: Caldas da Rainha, Portugal
- Has thanked: 499 times
- Been thanked: 727 times
Re: Arithmetic problem from Tobaku Haouden Zero.
This could be personal preference, but it feels easier to use the formula for square of sums, then subtract and do division, using a lot of "safe" approximations.
[1] (a + b)^2 = a^2 + 2ab + b^2.
[2] a = 1.41421356
[3] a ^ 2 = 1.99999999328
[4] 2 - a ^ 2 = 67.2... * 10 ^-9 (as far as the calculation is concerned, you can forget the -9).
[5] 67.2 / 2a ≈ 23
[6] b = 2.3 * 10^-9
=========
At [3], the b^2 term is extremely small. Unless 2 - a^2 looks wrong, you can ignore it.
You can do [5] with all the digits of the 67.2... term, as well as all the digits of a. But you're almost certainly not going to need them all. I'd start with 67.2 / 1.41 and see whether I might need to backtrack.
[1] (a + b)^2 = a^2 + 2ab + b^2.
[2] a = 1.41421356
[3] a ^ 2 = 1.99999999328
[4] 2 - a ^ 2 = 67.2... * 10 ^-9 (as far as the calculation is concerned, you can forget the -9).
[5] 67.2 / 2a ≈ 23
[6] b = 2.3 * 10^-9
=========
At [3], the b^2 term is extremely small. Unless 2 - a^2 looks wrong, you can ignore it.
You can do [5] with all the digits of the 67.2... term, as well as all the digits of a. But you're almost certainly not going to need them all. I'd start with 67.2 / 1.41 and see whether I might need to backtrack.
-
hyperpape
- Tengen
- Posts: 4382
- Joined: Thu May 06, 2010 3:24 pm
- Rank: AGA 3k
- GD Posts: 65
- OGS: Hyperpape 4k
- Location: Caldas da Rainha, Portugal
- Has thanked: 499 times
- Been thanked: 727 times
Re: Arithmetic problem from Tobaku Haouden Zero.
Oh, and if we want to test ourselves, someone should give us all the first 8 digits of 3 ^ (1/2)...
- daniel_the_smith
- Gosei
- Posts: 2116
- Joined: Wed Apr 21, 2010 8:51 am
- Rank: 2d AGA
- GD Posts: 1193
- KGS: lavalamp
- Tygem: imapenguin
- IGS: lavalamp
- OGS: daniel_the_smith
- Location: Silicon Valley
- Has thanked: 152 times
- Been thanked: 330 times
- Contact:
Re: Arithmetic problem from Tobaku Haouden Zero.
OK, go for it: 1.73205081
Edit: I tried calculating the above by hand with newton's method. I made a mistake somewhere. But using newton's method with a calculator, I got it correct. OK, I will try getting two more places by hand.
Edit: I tried calculating the above by hand with newton's method. I made a mistake somewhere. But using newton's method with a calculator, I got it correct. OK, I will try getting two more places by hand.
That which can be destroyed by the truth should be.
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com
-
hyperpape
- Tengen
- Posts: 4382
- Joined: Thu May 06, 2010 3:24 pm
- Rank: AGA 3k
- GD Posts: 65
- OGS: Hyperpape 4k
- Location: Caldas da Rainha, Portugal
- Has thanked: 499 times
- Been thanked: 727 times
Re: Arithmetic problem from Tobaku Haouden Zero.
Owwwww! I did that by hand. I believe 1.73205081 ^ 2 = 3.0000000084211561 (Python reports it as 3.0000000084216563, which fails a basic sanity check).
So we're a victim of rounding. We wanted 1.73205080.
Also, an important question is whether they have graph paper and what their handwriting is like. I did my first try on notebook paper, and it got out of alignment while I was squaring 1.73...
So we're a victim of rounding. We wanted 1.73205080.
Also, an important question is whether they have graph paper and what their handwriting is like. I did my first try on notebook paper, and it got out of alignment while I was squaring 1.73...
-
illluck
- Lives in sente
- Posts: 1223
- Joined: Sun Apr 25, 2010 5:07 am
- Rank: OGS 2d
- GD Posts: 0
- KGS: illluck
- Tygem: Trickprey
- OGS: illluck
- Has thanked: 736 times
- Been thanked: 239 times
Re: Arithmetic problem from Tobaku Haouden Zero.
I just tried to use the a^2+2ab approximation for root 3 by hand. It took me 20 minutes to do the calculations (my math sucks) and I made a mistake in there. Using a calculator, though, it does seem like the approximation is good enough.
- daniel_the_smith
- Gosei
- Posts: 2116
- Joined: Wed Apr 21, 2010 8:51 am
- Rank: 2d AGA
- GD Posts: 1193
- KGS: lavalamp
- Tygem: imapenguin
- IGS: lavalamp
- OGS: daniel_the_smith
- Location: Silicon Valley
- Has thanked: 152 times
- Been thanked: 330 times
- Contact:
Re: Arithmetic problem from Tobaku Haouden Zero.
Yeah, I realized it was evil to round it, but: someone already mentioned that the given digits might have been rounded, and ordinarily I would round a number like that if giving it to N digits, so...hyperpape wrote:Owwwww! I did that by hand. I believe 1.73205081 ^ 2 = 3.0000000084211561 (Python reports it as 3.0000000084216563, which fails a basic sanity check).
So we're a victim of rounding. We wanted 1.73205080.
Also, an important question is whether they have graph paper and what their handwriting is like. I did my first try on notebook paper, and it got out of alignment while I was squaring 1.73...
I decided I didn't have the patience to try this by hand and instead wrote a computer program to calculate square roots to arbitrary precision. Here's the fist 100k digits of sqrt(3): http://pastebin.com/6aV2Dn68
That which can be destroyed by the truth should be.
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com
-
illluck
- Lives in sente
- Posts: 1223
- Joined: Sun Apr 25, 2010 5:07 am
- Rank: OGS 2d
- GD Posts: 0
- KGS: illluck
- Tygem: Trickprey
- OGS: illluck
- Has thanked: 736 times
- Been thanked: 239 times
Re: Arithmetic problem from Tobaku Haouden Zero.
@hyperpape: My manual calculations give something close to the python result - 3.0000000084216561. I completely messed up the long division - I see no less than 3 errors in calculating 4 digits XD
For someone who doesn't fail as horribly as I do at math, though, the approximation is quite possible to do in 20 minutes (perhaps even less time, I had problems with aligning figures - would have been a good idea to just drew straight lines as grids).
For someone who doesn't fail as horribly as I do at math, though, the approximation is quite possible to do in 20 minutes (perhaps even less time, I had problems with aligning figures - would have been a good idea to just drew straight lines as grids).
- Cassandra
- Gosei
- Posts: 1334
- Joined: Wed Apr 28, 2010 11:33 am
- Rank: German 1 Kyu
- GD Posts: 0
- Has thanked: 14 times
- Been thanked: 153 times
Re: Arithmetic problem from Tobaku Haouden Zero.
I think, hyperpage's suggestion of
b = (2 - a * a) / (2 * a)
provides the fastest method, and it surely can be done in 25 minutes.
@ Araban:
What method has been choosen by the Hero ?
b = (2 - a * a) / (2 * a)
provides the fastest method, and it surely can be done in 25 minutes.
@ Araban:
What method has been choosen by the Hero ?
The really most difficult Go problem ever: https://igohatsuyoron120.de/index.htm
Igo Hatsuyōron #120 (really solved by KataGo)
Igo Hatsuyōron #120 (really solved by KataGo)
- daniel_the_smith
- Gosei
- Posts: 2116
- Joined: Wed Apr 21, 2010 8:51 am
- Rank: 2d AGA
- GD Posts: 1193
- KGS: lavalamp
- Tygem: imapenguin
- IGS: lavalamp
- OGS: daniel_the_smith
- Location: Silicon Valley
- Has thanked: 152 times
- Been thanked: 330 times
- Contact:
Re: Arithmetic problem from Tobaku Haouden Zero.
First 8 digits of square root of five per Google: 2.23606798 (in case someone wants to try Zero's method)
That which can be destroyed by the truth should be.
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com
--
My (sadly neglected, but not forgotten) project: http://dailyjoseki.com
- Solomon
- Gosei
- Posts: 1848
- Joined: Tue Apr 20, 2010 9:21 pm
- Rank: AGA 5d
- GD Posts: 0
- KGS: Capsule 4d
- Tygem: 치킨까스 5d
- Location: Bellevue, WA
- Has thanked: 90 times
- Been thanked: 835 times
Re: Arithmetic problem from Tobaku Haouden Zero.
daniel_the_smith wrote:First 8 digits of square root of five per Google: 2.23606798 (in case someone wants to try Zero's method)

Sigh...I actually did take the time to multiply this by itself by hand, only to get 5.0000000111812804, which had me confused because it had to be < 5. So I checked the first 8 digits of sqrt(5), only to realize that Google rounded up the 8th digit so the first 8 digits of sqrt(5) is actually 2.23606797__.
Those are 11 minutes I'm never getting back daniel_the_smith

