<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.5" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Brain Teaser: The Really, Really, Really Big Number</title>
	<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/</link>
	<description>Brain Fitness and Cognitive Health news</description>
	<pubDate>Tue, 14 Oct 2008 02:11:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>

	<item>
		<title>by: Luca</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-166511</link>
		<pubDate>Fri, 13 Jun 2008 11:29:22 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-166511</guid>
					<description>I used an invariant property of multiples of 11: 

n=k*11  in n the sum of odd position digits is equal to the sum of even position digits.

Thus, 100^n=10^2n has 2n+1 digits, and the previous multiple of 11 must have 2n digits.

so it can only be a number like 999...999, and the remainder must be 1</description>
		<content:encoded><![CDATA[<p>I used an invariant property of multiples of 11: </p>
<p>n=k*11  in n the sum of odd position digits is equal to the sum of even position digits.</p>
<p>Thus, 100^n=10^2n has 2n+1 digits, and the previous multiple of 11 must have 2n digits.</p>
<p>so it can only be a number like 999...999, and the remainder must be 1
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: T-Mak1978</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-161615</link>
		<pubDate>Sat, 24 May 2008 01:24:52 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-161615</guid>
					<description>Raising 100 to the 100 power is really not relevant. When you divide 100 by 11 the remainder is 1. In this case, no matter how many zeros will be in the "big number", you will still come out with a remainder of 1.</description>
		<content:encoded><![CDATA[<p>Raising 100 to the 100 power is really not relevant. When you divide 100 by 11 the remainder is 1. In this case, no matter how many zeros will be in the &quot;big number&quot;, you will still come out with a remainder of 1.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Anthuan</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-159186</link>
		<pubDate>Tue, 13 May 2008 12:03:03 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-159186</guid>
					<description>My solution was a bit different.

10^0 mod 11 = 1
10^1 mod 11 = 10
10^2 mod 11 = 1
10^3 mod 11 = 10

Thus

10^n mod 11 = 1, if n is even, and
10^n mod 11 = 10, if n is odd!</description>
		<content:encoded><![CDATA[<p>My solution was a bit different.</p>
<p>10^0 mod 11 = 1<br />
10^1 mod 11 = 10<br />
10^2 mod 11 = 1<br />
10^3 mod 11 = 10</p>
<p>Thus</p>
<p>10^n mod 11 = 1, if n is even, and<br />
10^n mod 11 = 10, if n is odd!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Aaron</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-146458</link>
		<pubDate>Mon, 24 Mar 2008 06:00:51 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-146458</guid>
					<description>I think it's one, I don't have any crazy solution it's just my gut instinct =P</description>
		<content:encoded><![CDATA[<p>I think it's one, I don't have any crazy solution it's just my gut instinct =P
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: RC</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-141772</link>
		<pubDate>Thu, 06 Mar 2008 20:33:09 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-141772</guid>
					<description>The number 100^100 may be written as,

(99 + 1)^(99 + 1). By the exponent law, a^m * a^n = a^(m + n),

we can rewrite to this,

(99 + 1)(99 + 1)^99

and futher,

(99 + 1)(99 + 1)(99 + 1)^98

and so on, down the line. Let a = (9)(11). We get,

(a^2 + 2a + 1)(a + 1)^98 =

(a^3 + 3a^2 + 3a + 1)(a + 1)^97 =

(a^4 + 4a^3 + 6a^2 + 4a + 1)(a + 1)^96 = .. = a^99 + [98 terms] + 1

We find that every term is divisible by 11 (a is divisible) except the very last one, 1.

The remainder is 1.

Here's another quick one, which is learned from the above.

Using only 9s, express 100^100.

Well, it's no trick at all. 9/9 = 1. 

Ans. (99 + 9/9)^(99 + 9/9)

or (99 + 9/9)(99 + 9/9)^99</description>
		<content:encoded><![CDATA[<p>The number 100^100 may be written as,</p>
<p>(99 + 1)^(99 + 1). By the exponent law, a^m * a^n = a^(m + n),</p>
<p>we can rewrite to this,</p>
<p>(99 + 1)(99 + 1)^99</p>
<p>and futher,</p>
<p>(99 + 1)(99 + 1)(99 + 1)^98</p>
<p>and so on, down the line. Let a = (9)(11). We get,</p>
<p>(a^2 + 2a + 1)(a + 1)^98 =</p>
<p>(a^3 + 3a^2 + 3a + 1)(a + 1)^97 =</p>
<p>(a^4 + 4a^3 + 6a^2 + 4a + 1)(a + 1)^96 = .. = a^99 + [98 terms] + 1</p>
<p>We find that every term is divisible by 11 (a is divisible) except the very last one, 1.</p>
<p>The remainder is 1.</p>
<p>Here's another quick one, which is learned from the above.</p>
<p>Using only 9s, express 100^100.</p>
<p>Well, it's no trick at all. 9/9 = 1. </p>
<p>Ans. (99 + 9/9)^(99 + 9/9)</p>
<p>or (99 + 9/9)(99 + 9/9)^99
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Alvaro</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-114420</link>
		<pubDate>Mon, 24 Dec 2007 14:10:19 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-114420</guid>
					<description>Hello Jonathan, thanks for sharing that experience! We are very glad your students enjoyed the teaser, very impressive :-)

Happy holidays</description>
		<content:encoded><![CDATA[<p>Hello Jonathan, thanks for sharing that experience! We are very glad your students enjoyed the teaser, very impressive <img src='http://www.sharpbrains.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Happy holidays
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Jonathan</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-113634</link>
		<pubDate>Sat, 22 Dec 2007 18:49:06 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-113634</guid>
					<description>So, I finally used the puzzle in class, though perhaps not exactly as you intended. It was with 2 9th grade, pre-vacation algebra classes, and the results are &lt;a href='http://jd2718.wordpress.com/2007/12/22/teaching-the-really-big-number-applied/' rel="nofollow"&gt;here&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>So, I finally used the puzzle in class, though perhaps not exactly as you intended. It was with 2 9th grade, pre-vacation algebra classes, and the results are <a href='http://jd2718.wordpress.com/2007/12/22/teaching-the-really-big-number-applied/' rel="nofollow">here</a>.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Teaching: The Really Big Number (applied) &#171; JD2718</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-113633</link>
		<pubDate>Sat, 22 Dec 2007 18:45:22 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-113633</guid>
					<description>[...] What is the remainder when  is divided by 11? [...]</description>
		<content:encoded><![CDATA[<p>[...] What is the remainder when  is divided by 11? [...]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: &#187; Brain Teasers and Games with a neuroscience angle: our Top 50 &#160;&#160; &#171; Brain Fitness Revolution at SharpBrains &#160;&#160;&#160;&#160;</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-86216</link>
		<pubDate>Sat, 03 Nov 2007 13:03:33 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-86216</guid>
					<description>[...] 45. Find the the Really, Really, Really Big Number. [...]</description>
		<content:encoded><![CDATA[<p>[...] 45. Find the the Really, Really, Really Big Number. [...]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Rami Lehti</title>
		<link>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-81249</link>
		<pubDate>Thu, 18 Oct 2007 08:10:51 +0000</pubDate>
		<guid>http://www.sharpbrains.com/blog/2007/05/17/the-really-really-really-big-number/#comment-81249</guid>
					<description>Ok. The remainder is 1.
What is the solution?

The generic solution for all positive exponents is:
9*100^0+9*100^1+9*100^2+...+9*100^(n-1)

For this particular problem just substitute n=100.</description>
		<content:encoded><![CDATA[<p>Ok. The remainder is 1.<br />
What is the solution?</p>
<p>The generic solution for all positive exponents is:<br />
9*100^0+9*100^1+9*100^2+...+9*100^(n-1)</p>
<p>For this particular problem just substitute n=100.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
