<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Project Euler: Problem 25</title>
	<atom:link href="http://www.geekality.net/2009/11/06/project-euler-problem-25/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geekality.net/2009/11/06/project-euler-problem-25/</link>
	<description>With a hint of Social Ineptitude</description>
	<lastBuildDate>Tue, 07 Feb 2012 09:05:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Mokhtar</title>
		<link>http://www.geekality.net/2009/11/06/project-euler-problem-25/#comment-6249</link>
		<dc:creator>Mokhtar</dc:creator>
		<pubDate>Mon, 20 Jun 2011 17:04:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.geekality.net/?p=751#comment-6249</guid>
		<description>amazing formula, I love solving project euler problems using mathematical tricks.
it makes me keep learning and loving math.
thank you.</description>
		<content:encoded><![CDATA[<p>amazing formula, I love solving project euler problems using mathematical tricks.<br />
it makes me keep learning and loving math.<br />
thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Torleif</title>
		<link>http://www.geekality.net/2009/11/06/project-euler-problem-25/#comment-5384</link>
		<dc:creator>Torleif</dc:creator>
		<pubDate>Mon, 14 Mar 2011 17:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.geekality.net/?p=751#comment-5384</guid>
		<description>Oh, maybe that&#039;s the issue. Think it should be base 10!</description>
		<content:encoded><![CDATA[<p>Oh, maybe that&#8217;s the issue. Think it should be base 10!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jo Hannes</title>
		<link>http://www.geekality.net/2009/11/06/project-euler-problem-25/#comment-5372</link>
		<dc:creator>Jo Hannes</dc:creator>
		<pubDate>Sun, 13 Mar 2011 17:17:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.geekality.net/?p=751#comment-5372</guid>
		<description>Could it be, that you used a logarithm to another base? I get the result 2077, when i use logarithm with base e.</description>
		<content:encoded><![CDATA[<p>Could it be, that you used a logarithm to another base? I get the result 2077, when i use logarithm with base e.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Torleif</title>
		<link>http://www.geekality.net/2009/11/06/project-euler-problem-25/#comment-3903</link>
		<dc:creator>Torleif</dc:creator>
		<pubDate>Tue, 18 Jan 2011 09:44:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.geekality.net/?p=751#comment-3903</guid>
		<description>Really not sure why this is not working... Checked my C# code now, and it gives the right answer...

&lt;code lang=&quot;csharp&quot;&gt;return (int) Math.Ceiling((1000 + Math.Log10(5) / 2 - 1) / Math.Log10(Constants.GoldenRatio))&lt;/code&gt;

GoldenRatio is the double 1.61803.</description>
		<content:encoded><![CDATA[<p>Really not sure why this is not working&#8230; Checked my C# code now, and it gives the right answer&#8230;</p>
<div class="codecolorer-container csharp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="csharp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0600FF; font-weight: bold;">return</span> <span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">int</span><span style="color: #008000;">&#41;</span> Math<span style="color: #008000;">.</span><span style="color: #0000FF;">Ceiling</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">1000</span> <span style="color: #008000;">+</span> Math<span style="color: #008000;">.</span><span style="color: #0000FF;">Log10</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">5</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">/</span> <span style="color: #FF0000;">2</span> <span style="color: #008000;">-</span> <span style="color: #FF0000;">1</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">/</span> Math<span style="color: #008000;">.</span><span style="color: #0000FF;">Log10</span><span style="color: #008000;">&#40;</span>Constants<span style="color: #008000;">.</span><span style="color: #0000FF;">GoldenRatio</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span></div></div>
<p>GoldenRatio is the double 1.61803.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Torleif</title>
		<link>http://www.geekality.net/2009/11/06/project-euler-problem-25/#comment-3604</link>
		<dc:creator>Torleif</dc:creator>
		<pubDate>Thu, 06 Jan 2011 15:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.geekality.net/?p=751#comment-3604</guid>
		<description>Hm, that&#039;s strange. When I did this in C# I am pretty sure I got the right answer. Both from my bruteforce and the mathematical way of doing it. When I try to use the same programming formula in PHP here now, I get a different answer... can&#039;t try out the C# version now, but will see if I can check it out later some time. 

Must perhaps be an error in my formula? Or maybe PHP and your TI-89 works with a different precision than C#, or something like that? Let me know if you figure it out. 

What answer did you get? With PHP I got 2077, which of course is wrong...</description>
		<content:encoded><![CDATA[<p>Hm, that&#8217;s strange. When I did this in C# I am pretty sure I got the right answer. Both from my bruteforce and the mathematical way of doing it. When I try to use the same programming formula in PHP here now, I get a different answer&#8230; can&#8217;t try out the C# version now, but will see if I can check it out later some time. </p>
<p>Must perhaps be an error in my formula? Or maybe PHP and your TI-89 works with a different precision than C#, or something like that? Let me know if you figure it out. </p>
<p>What answer did you get? With PHP I got 2077, which of course is wrong&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: luiscencio</title>
		<link>http://www.geekality.net/2009/11/06/project-euler-problem-25/#comment-3588</link>
		<dc:creator>luiscencio</dc:creator>
		<pubDate>Wed, 05 Jan 2011 20:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.geekality.net/?p=751#comment-3588</guid>
		<description>hi.... i used your formula... it gives me a wrong answer =) no offense
I am using a ti-89

I get a 4 digit not a 1000 digit. I mean... I enter what i got from the formula and it tells me its an incorrect answer =( sad

wish i could send you a screenshot =(</description>
		<content:encoded><![CDATA[<p>hi&#8230;. i used your formula&#8230; it gives me a wrong answer =) no offense<br />
I am using a ti-89</p>
<p>I get a 4 digit not a 1000 digit. I mean&#8230; I enter what i got from the formula and it tells me its an incorrect answer =( sad</p>
<p>wish i could send you a screenshot =(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 10 one-line solutions for project euler &#124; united-coders.com</title>
		<link>http://www.geekality.net/2009/11/06/project-euler-problem-25/#comment-3366</link>
		<dc:creator>10 one-line solutions for project euler &#124; united-coders.com</dc:creator>
		<pubDate>Wed, 29 Dec 2010 11:46:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.geekality.net/?p=751#comment-3366</guid>
		<description>[...] to (n)*Phi=(n+1), where Phi is the Golden Ratio: (1+sqrt(5))/2 - detailed description can found on geekality.net. def [...]</description>
		<content:encoded><![CDATA[<p>[...] to (n)*Phi=(n+1), where Phi is the Golden Ratio: (1+sqrt(5))/2 &#8211; detailed description can found on geekality.net. def [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

