Chapeau!
Creating this challenge must have been at least as hard as solving it!
Don't fear the Maths
- Yharaskrik
- Posts: 31
- Joined: Wed Nov 05, 2008 11:44 am
- Location: Germany
-
- Posts: 144
- Joined: Fri Mar 28, 2008 11:29 pm
- Location: #hacker.org on Freenode
That was *amazing*. One of my favorites, hands down.
Nice ending, too <3
I had the hardest time with just graphing it! I simplified out the "hard" parts, but I couldn't solve for y. (I don't think the answer would have shown thru even if I did). In the end, I gave up and graphed it in 3D setting a max of 2, which ended up working.
Nice ending, too <3
I had the hardest time with just graphing it! I simplified out the "hard" parts, but I couldn't solve for y. (I don't think the answer would have shown thru even if I did). In the end, I gave up and graphed it in 3D setting a max of 2, which ended up working.
heh i was stumped for a while until i remembered the original mentioned euler as a hint. fixed up the equation, and started plotting a black/white image for whose that satisfy it.
the eps ^ (huge thing) is also hard to see from images generated by the equation... had to parse it manually to make sure it was a power and not just a esp*phi.
the eps ^ (huge thing) is also hard to see from images generated by the equation... had to parse it manually to make sure it was a power and not just a esp*phi.
- dangermouse
- Posts: 89
- Joined: Sun Jun 05, 2011 8:14 pm
- Location: deep space computing AG
- Contact:
After getting the TeX source, I have put $$ around it and compiled.
The equation had just 2 points as a solution.
After a very long time (3 months) I have looked at the source code more closely to discover it used LaTeX \frac so I had to add \def\frac#1#2{{#1\over#2}}.
Afterwards it was simple ... I have expected heartsuite is the only possible output, but I have reduced it to
$$
y=|x|+d, d^2+e^{2|x|+d-3}<3, |d|<\sqrt{3}, |x|<{3+\sqrt{3}+\ln 3\over 2}, |y|<{3+3\sqrt{3}+\ln 3\over 2}
$$
And I have switched to java to plot the solution rather to continue analytically.
The equation had just 2 points as a solution.
After a very long time (3 months) I have looked at the source code more closely to discover it used LaTeX \frac so I had to add \def\frac#1#2{{#1\over#2}}.
Afterwards it was simple ... I have expected heartsuite is the only possible output, but I have reduced it to
$$
y=|x|+d, d^2+e^{2|x|+d-3}<3, |d|<\sqrt{3}, |x|<{3+\sqrt{3}+\ln 3\over 2}, |y|<{3+3\sqrt{3}+\ln 3\over 2}
$$
And I have switched to java to plot the solution rather to continue analytically.
This is really a cool problem. I stuck for a whole day before I realized I was trying to solve the inequality as
while it is actually
[/code]
After that, the solution is just straightforward using WolframAlpha.
Code: Select all
\varepsilon^{\varphi}+e^{-i\pi}
Code: Select all
{\varepsilon^{\varphi+e^{-i\pi}}
After that, the solution is just straightforward using WolframAlpha.