Our server costs ~$56 per month to run. Please consider donating or becoming a Patron to help keep the site running. Help us gain new members by following us on Twitter and liking our page on Facebook!
Current time: July 24, 2025, 7:47 am

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[split] 0.999... equals 1
RE: [split] 0.999... equals 1
Every number fits on the number line, which is infinitely long in both directions, with decimal point in the middle.

Each position on the number line can take one of 10 digits (0-9), depending on the value you want to represent. The positions to the left of the decimal point represent the powers of 10 in the positive direction, so every step you take to the left, the value is worth 10 times more than the previous would have been. The positions on the right of the decimal point represent the powers of 10 in the negative direction, so every step you take to the right, the value is worth 10 times less than the previous would have been.

For example:

00001.00000 = 1 (There is a 1 in the first position on the left, so it is worth 1 x 10^0, which is 1. There are no other values in other positions.)

00010.00000 = 10 (There is a 1 in the second position on the left, so it is worth 1 x 10^1, which is 10. There are no other values in other positions.)

00000.10000 = 0.1 (There is a 1 in the first position on the right, so it is worth 1 x 10^-1, which is 0.1. There are no other values in other positions.)

Ok, so let's do a hard one. Combining multiple positions:

00101.00100 = ?

Well, there is a 1 in the third position along to the left, and a 1 in the first position along to the left, and also a 1 in the third position to the right. So:

(1 x 10^2) + (1 x 10^0) + (1 x 10^-3) = 101.001

This is simple base 10 (decimal) arithmetic, but done in it's true form. It's not very good to teach to people just starting out, but once you have to calculate in more bases (like base 2 - otherwise known as binary) it becomes invaluable.

You can see that it works with any number 0 - 9, so:

00823.90000 = (8 x 10^2) + (2 x 10^1) + (3 x 10^0) + (9 x 10^-1) = 823.9

So, the extra zeros are neccessary, since they represent powers of 10 in the decimal system. Another way of writing the above calculation would have been:

(0 x 10^4) + (0 x 10^3) + (8 x 10^2) + (2 x 10^1) + (3 x 10^0) + (9 x 10^-1) + (0 x 10^-2) + (0 x 10^-3) + (0 x 10^-4) + (0 x 10^-5)

However since all of the calculations that have a multiple of 0 in them are equal to 0, there is no point in including them in the calculation.

Some of you are probably wondering about the extra bases, so I'll quickly do an example of binary to decimal conversion. Binary is the base 2 system, which means that for each position on the number line, there can only be 2 values (0-1) rather than 10 (0-9). Not only this, but each step represents a power of 2 (in positive / negative direction).

So the number: 01010.10100 = (1 x 2^3) + (1 x 2^1) + (1 x 2^-1) + (1 x 2^-3) = 10.625 (in decimal).

Easy!
Reply



Messages In This Thread
[split] 0.999... equals 1 - by Rhizomorph13 - September 21, 2009 at 5:29 pm
RE: By the way, 0.999... = 1 - by Tiberius - November 3, 2011 at 1:37 pm
RE: By the way, 0.999... = 1 - by Modular Moog V - November 15, 2011 at 12:34 am
RE: By the way, 0.999... = 1 - by IATIA - November 15, 2011 at 1:50 am
RE: By the way, 0.999... = 1 - by edk - November 16, 2011 at 1:27 am
RE: By the way, 0.999... = 1 - by IATIA - November 16, 2011 at 9:09 am
RE: By the way, 0.999... = 1 - by edk - November 16, 2011 at 12:31 pm
RE: By the way, 0.999... = 1 - by Tiberius - November 3, 2011 at 3:43 pm
RE: By the way, 0.999... = 1 - by IATIA - November 3, 2011 at 8:13 pm
RE: By the way, 0.999... = 1 - by Tiberius - November 3, 2011 at 9:49 pm
RE: [split] 0.999... equals 1 - by fr0d0 - November 3, 2011 at 4:45 pm
RE: [split] 0.999... equals 1 - by IATIA - November 4, 2011 at 8:44 pm
RE: [split] 0.999... equals 1 - by Tiberius - November 6, 2011 at 6:12 pm
RE: [split] 0.999... equals 1 - by LastPoet - November 6, 2011 at 5:45 pm
RE: [split] 0.999... equals 1 - by IATIA - November 6, 2011 at 6:49 pm
RE: [split] 0.999... equals 1 - by Tiberius - November 6, 2011 at 7:09 pm
RE: [split] 0.999... equals 1 - by IATIA - November 6, 2011 at 7:36 pm
RE: [split] 0.999... equals 1 - by LastPoet - November 7, 2011 at 6:41 am
RE: [split] 0.999... equals 1 - by Tiberius - November 6, 2011 at 7:40 pm
RE: [split] 0.999... equals 1 - by edk - November 7, 2011 at 8:19 am
RE: [split] 0.999... equals 1 - by Modular Moog V - November 7, 2011 at 8:53 pm
RE: [split] 0.999... equals 1 - by edk - November 8, 2011 at 8:45 am
RE: [split] 0.999... equals 1 - by Tiberius - November 8, 2011 at 8:53 am
RE: [split] 0.999... equals 1 - by LastPoet - November 8, 2011 at 9:32 am
RE: [split] 0.999... equals 1 - by little_monkey - November 16, 2011 at 9:53 am
RE: [split] 0.999... equals 1 - by houseofcantor - December 12, 2011 at 1:22 am
RE: [split] 0.999... equals 1 - by CliveStaples - February 2, 2012 at 4:30 am
RE: [split] 0.999... equals 1 - by Categories+Sheaves - February 2, 2012 at 8:57 am
RE: [split] 0.999... equals 1 - by CliveStaples - February 2, 2012 at 9:58 am
RE: [split] 0.999... equals 1 - by Categories+Sheaves - February 25, 2012 at 2:28 am
RE: [split] 0.999... equals 1 - by Tiberius - February 25, 2012 at 4:11 am
RE: [split] 0.999... equals 1 - by john_gabriel - February 19, 2013 at 10:32 pm
RE: [split] 0.999... equals 1 - by Aractus - February 20, 2013 at 4:18 am
RE: [split] 0.999... equals 1 - by Tiberius - February 20, 2013 at 4:30 am
RE: [split] 0.999... equals 1 - by Aractus - February 20, 2013 at 5:52 am
RE: [split] 0.999... equals 1 - by Categories+Sheaves - February 20, 2013 at 6:47 am
RE: [split] 0.999... equals 1 - by Dee Dee Ramone - February 20, 2013 at 5:18 am
RE: How do you rate? - by Violet - September 21, 2009 at 5:32 pm
RE: How do you rate? - by Tiberius - September 22, 2009 at 5:11 am
RE: How do you rate? - by leo-rcc - September 22, 2009 at 6:51 am
RE: How do you rate? - by Tiberius - September 22, 2009 at 9:19 am
RE: How do you rate? - by leo-rcc - September 22, 2009 at 9:27 am
RE: How do you rate? - by Tiberius - September 22, 2009 at 9:42 am
RE: How do you rate? - by Retorth - September 22, 2009 at 9:49 am
RE: How do you rate? - by Tiberius - September 22, 2009 at 9:54 am
RE: How do you rate? - by leo-rcc - September 22, 2009 at 10:21 am
RE: How do you rate? - by Tiberius - September 22, 2009 at 10:32 am
RE: [split] 0.999... equals 1 - by leo-rcc - September 22, 2009 at 10:49 am
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 11:37 am
RE: [split] 0.999... equals 1 - by Retorth - September 22, 2009 at 11:41 am
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 11:44 am
RE: [split] 0.999... equals 1 - by Retorth - September 22, 2009 at 11:55 am
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 11:58 am
RE: [split] 0.999... equals 1 - by Retorth - September 22, 2009 at 12:00 pm
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 12:21 pm
RE: [split] 0.999... equals 1 - by Retorth - September 22, 2009 at 12:24 pm
RE: [split] 0.999... equals 1 - by Rob - September 22, 2009 at 12:24 pm
RE: [split] 0.999... equals 1 - by Meatball - September 22, 2009 at 1:02 pm
RE: [split] 0.999... equals 1 - by Retorth - September 22, 2009 at 1:07 pm
RE: [split] 0.999... equals 1 - by Eilonnwy - September 22, 2009 at 1:23 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 22, 2009 at 1:29 pm
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 1:33 pm
RE: [split] 0.999... equals 1 - by Meatball - September 22, 2009 at 1:35 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 22, 2009 at 1:46 pm
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 1:53 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 22, 2009 at 1:56 pm
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 2:00 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 22, 2009 at 2:07 pm
RE: [split] 0.999... equals 1 - by Eilonnwy - September 22, 2009 at 2:09 pm
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 2:15 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - September 22, 2009 at 2:34 pm
RE: [split] 0.999... equals 1 - by Retorth - September 22, 2009 at 2:39 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - September 22, 2009 at 3:19 pm
RE: [split] 0.999... equals 1 - by Retorth - September 22, 2009 at 3:23 pm
RE: [split] 0.999... equals 1 - by leo-rcc - September 22, 2009 at 3:24 pm
RE: [split] 0.999... equals 1 - by Eilonnwy - September 22, 2009 at 5:26 pm
RE: [split] 0.999... equals 1 - by Rob - September 22, 2009 at 5:27 pm
RE: [split] 0.999... equals 1 - by Meatball - September 22, 2009 at 5:49 pm
RE: [split] 0.999... equals 1 - by leo-rcc - September 22, 2009 at 5:49 pm
RE: [split] 0.999... equals 1 - by Eilonnwy - September 22, 2009 at 5:55 pm
RE: [split] 0.999... equals 1 - by leo-rcc - September 22, 2009 at 6:01 pm
RE: [split] 0.999... equals 1 - by Violet - September 22, 2009 at 6:03 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - September 22, 2009 at 6:18 pm
RE: [split] 0.999... equals 1 - by Eilonnwy - September 22, 2009 at 6:55 pm
RE: [split] 0.999... equals 1 - by Retorth - September 23, 2009 at 12:36 am
RE: [split] 0.999... equals 1 - by Rhizomorph13 - September 23, 2009 at 12:50 am
RE: [split] 0.999... equals 1 - by Retorth - September 23, 2009 at 1:02 am
RE: [split] 0.999... equals 1 - by Meatball - September 23, 2009 at 10:27 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - September 23, 2009 at 10:39 am
RE: [split] 0.999... equals 1 - by Violet - September 23, 2009 at 11:53 am
RE: [split] 0.999... equals 1 - by Rhizomorph13 - September 23, 2009 at 12:08 pm
RE: [split] 0.999... equals 1 - by Retorth - September 23, 2009 at 12:17 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - September 23, 2009 at 1:12 pm
RE: [split] 0.999... equals 1 - by Retorth - September 23, 2009 at 1:16 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 1:16 pm
RE: [split] 0.999... equals 1 - by Rob - September 23, 2009 at 2:42 pm
RE: [split] 0.999... equals 1 - by Darwinian - September 23, 2009 at 2:47 pm
RE: How do you rate? - by Violet - September 23, 2009 at 2:59 pm
RE: [split] 0.999... equals 1 - by Retorth - September 23, 2009 at 3:04 pm
RE: [split] 0.999... equals 1 - by Violet - September 23, 2009 at 3:43 pm
RE: [split] 0.999... equals 1 - by Retorth - September 23, 2009 at 4:08 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 4:26 pm
RE: [split] 0.999... equals 1 - by fr0d0 - September 23, 2009 at 4:51 pm
RE: [split] 0.999... equals 1 - by Violet - September 23, 2009 at 4:57 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 4:59 pm
RE: [split] 0.999... equals 1 - by fr0d0 - September 23, 2009 at 5:09 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 5:17 pm
RE: [split] 0.999... equals 1 - by fr0d0 - September 23, 2009 at 5:56 pm
RE: [split] 0.999... equals 1 - by Eilonnwy - September 23, 2009 at 6:03 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 6:08 pm
RE: [split] 0.999... equals 1 - by fr0d0 - September 23, 2009 at 6:11 pm
RE: [split] 0.999... equals 1 - by Violet - September 23, 2009 at 6:18 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 6:20 pm
RE: [split] 0.999... equals 1 - by fr0d0 - September 23, 2009 at 6:21 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 6:28 pm
RE: [split] 0.999... equals 1 - by fr0d0 - September 23, 2009 at 6:50 pm
RE: [split] 0.999... equals 1 - by Eilonnwy - September 23, 2009 at 6:50 pm
RE: [split] 0.999... equals 1 - by fr0d0 - September 23, 2009 at 6:54 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 6:55 pm
RE: [split] 0.999... equals 1 - by Eilonnwy - September 23, 2009 at 6:56 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 6:57 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 23, 2009 at 9:35 pm
RE: [split] 0.999... equals 1 - by Amphora - September 24, 2009 at 4:07 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - September 24, 2009 at 7:00 pm
RE: [split] 0.999... equals 1 - by Retorth - September 24, 2009 at 11:44 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - September 25, 2009 at 1:40 pm
RE: [split] 0.999... equals 1 - by Retorth - September 25, 2009 at 1:43 pm
RE: [split] 0.999... equals 1 - by Meatball - September 25, 2009 at 1:48 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - September 25, 2009 at 1:49 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 25, 2009 at 2:57 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - September 25, 2009 at 3:00 pm
RE: [split] 0.999... equals 1 - by Retorth - September 25, 2009 at 3:04 pm
RE: [split] 0.999... equals 1 - by Tiberius - September 25, 2009 at 3:04 pm
RE: [split] 0.999... equals 1 - by Retorth - September 25, 2009 at 3:16 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - September 25, 2009 at 4:37 pm
RE: [split] 0.999... equals 1 - by Violet - October 8, 2009 at 4:27 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 8, 2009 at 5:06 pm
RE: [split] 0.999... equals 1 - by Violet - October 8, 2009 at 5:58 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 8, 2009 at 7:16 pm
RE: [split] 0.999... equals 1 - by Violet - October 9, 2009 at 4:32 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 9, 2009 at 10:15 pm
RE: [split] 0.999... equals 1 - by theblindferrengi - October 11, 2009 at 11:09 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 12, 2009 at 4:18 am
RE: [split] 0.999... equals 1 - by Ephrium - October 14, 2009 at 12:40 pm
RE: [split] 0.999... equals 1 - by Meatball - October 14, 2009 at 12:43 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 14, 2009 at 1:38 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 2:13 pm
RE: [split] 0.999... equals 1 - by Retorth - October 14, 2009 at 2:47 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 2:59 pm
RE: [split] 0.999... equals 1 - by Retorth - October 14, 2009 at 3:17 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 3:51 pm
RE: [split] 0.999... equals 1 - by Retorth - October 14, 2009 at 4:09 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 4:15 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 14, 2009 at 4:50 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 5:15 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 14, 2009 at 5:19 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 5:28 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 14, 2009 at 6:16 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 6:28 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 14, 2009 at 6:52 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 8:41 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 14, 2009 at 9:15 pm
RE: [split] 0.999... equals 1 - by theVOID - October 14, 2009 at 9:28 pm
RE: [split] 0.999... equals 1 - by Violet - October 14, 2009 at 9:40 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 14, 2009 at 10:06 pm
RE: [split] 0.999... equals 1 - by Ephrium - October 15, 2009 at 10:20 am
RE: [split] 0.999... equals 1 - by Meatball - October 15, 2009 at 11:35 am
RE: [split] 0.999... equals 1 - by Violet - October 15, 2009 at 1:20 pm
RE: [split] 0.999... equals 1 - by Ephrium - October 15, 2009 at 1:43 pm
RE: [split] 0.999... equals 1 - by Violet - October 15, 2009 at 2:03 pm
RE: [split] 0.999... equals 1 - by Ephrium - October 15, 2009 at 2:47 pm
RE: [split] 0.999... equals 1 - by Violet - October 15, 2009 at 3:08 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 15, 2009 at 3:46 pm
RE: [split] 0.999... equals 1 - by Violet - October 15, 2009 at 4:04 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 15, 2009 at 4:12 pm
RE: [split] 0.999... equals 1 - by Violet - October 15, 2009 at 4:44 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 5:31 pm
RE: [split] 0.999... equals 1 - by Violet - October 15, 2009 at 6:00 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 7:15 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 7:20 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 7:24 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 7:30 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 7:32 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 7:35 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 15, 2009 at 7:38 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 7:39 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 7:43 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 15, 2009 at 7:46 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 7:50 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 7:52 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 15, 2009 at 7:56 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 7:57 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 7:59 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 15, 2009 at 8:01 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 8:03 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 8:08 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 8:14 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 8:20 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 8:29 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 8:35 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 8:42 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 8:57 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 9:21 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 9:22 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 9:24 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 9:26 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 9:27 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 9:28 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 9:38 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 9:42 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 9:47 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 9:59 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 15, 2009 at 10:15 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 15, 2009 at 10:36 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 15, 2009 at 10:50 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 15, 2009 at 11:44 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 16, 2009 at 5:48 am
RE: [split] 0.999... equals 1 - by Retorth - October 16, 2009 at 8:51 am
RE: [split] 0.999... equals 1 - by Eilonnwy - October 16, 2009 at 9:01 am
RE: [split] 0.999... equals 1 - by leo-rcc - October 16, 2009 at 9:12 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 16, 2009 at 9:38 am
RE: [split] 0.999... equals 1 - by leo-rcc - October 16, 2009 at 9:46 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 16, 2009 at 9:48 am
RE: [split] 0.999... equals 1 - by leo-rcc - October 16, 2009 at 9:57 am
RE: [split] 0.999... equals 1 - by Tiberius - October 16, 2009 at 9:59 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 16, 2009 at 10:01 am
RE: [split] 0.999... equals 1 - by leo-rcc - October 16, 2009 at 10:06 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 16, 2009 at 10:09 am
RE: [split] 0.999... equals 1 - by Tiberius - October 16, 2009 at 10:19 am
RE: [split] 0.999... equals 1 - by Eilonnwy - October 16, 2009 at 10:23 am
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 16, 2009 at 10:32 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 16, 2009 at 10:33 am
RE: [split] 0.999... equals 1 - by leo-rcc - October 16, 2009 at 10:36 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 16, 2009 at 10:36 am
RE: [split] 0.999... equals 1 - by Tiberius - October 16, 2009 at 10:37 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 16, 2009 at 10:38 am
RE: [split] 0.999... equals 1 - by Meatball - October 16, 2009 at 10:57 am
RE: [split] 0.999... equals 1 - by fr0d0 - October 16, 2009 at 12:39 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 16, 2009 at 3:42 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 16, 2009 at 5:16 pm
RE: [split] 0.999... equals 1 - by Armitando - October 18, 2009 at 10:45 pm
RE: [split] 0.999... equals 1 - by theVOID - October 19, 2009 at 12:36 am
RE: [split] 0.999... equals 1 - by theblindferrengi - October 19, 2009 at 12:53 am
RE: [split] 0.999... equals 1 - by Tiberius - October 19, 2009 at 4:11 am
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 8:15 am
RE: [split] 0.999... equals 1 - by theVOID - October 19, 2009 at 8:19 am
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 8:22 am
RE: [split] 0.999... equals 1 - by Tiberius - October 19, 2009 at 8:32 am
RE: [split] 0.999... equals 1 - by theVOID - October 19, 2009 at 8:49 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 19, 2009 at 9:41 am
RE: [split] 0.999... equals 1 - by Ephrium - October 19, 2009 at 2:10 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 19, 2009 at 2:34 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 2:45 pm
RE: [split] 0.999... equals 1 - by Meatball - October 19, 2009 at 2:51 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 19, 2009 at 3:11 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 19, 2009 at 5:25 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 19, 2009 at 5:40 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 6:05 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 19, 2009 at 6:20 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 6:37 pm
RE: [split] 0.999... equals 1 - by theVOID - October 19, 2009 at 6:41 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 19, 2009 at 6:41 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 6:48 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 19, 2009 at 6:53 pm
RE: [split] 0.999... equals 1 - by theVOID - October 19, 2009 at 7:03 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 19, 2009 at 7:07 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 7:24 pm
RE: [split] 0.999... equals 1 - by Ephrium - October 19, 2009 at 8:09 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 19, 2009 at 8:12 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 8:22 pm
RE: [split] 0.999... equals 1 - by Ephrium - October 19, 2009 at 8:25 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 19, 2009 at 8:26 pm
RE: [split] 0.999... equals 1 - by Ephrium - October 19, 2009 at 8:27 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 19, 2009 at 8:36 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 19, 2009 at 8:42 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 19, 2009 at 8:43 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 19, 2009 at 9:25 pm
RE: [split] 0.999... equals 1 - by theblindferrengi - October 19, 2009 at 10:04 pm
RE: [split] 0.999... equals 1 - by Rhizomorph13 - October 20, 2009 at 2:33 am
RE: [split] 0.999... equals 1 - by Tiberius - October 20, 2009 at 4:16 am
RE: [split] 0.999... equals 1 - by theVOID - October 20, 2009 at 5:10 am
RE: [split] 0.999... equals 1 - by Tiberius - October 20, 2009 at 5:50 am
RE: [split] 0.999... equals 1 - by fr0d0 - October 20, 2009 at 1:26 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 20, 2009 at 1:46 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 20, 2009 at 1:53 pm
RE: [split] 0.999... equals 1 - by Ephrium - October 21, 2009 at 9:36 am
RE: [split] 0.999... equals 1 - by Tiberius - October 21, 2009 at 2:59 pm
RE: [split] 0.999... equals 1 - by Violet - October 23, 2009 at 6:36 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 23, 2009 at 6:45 pm
RE: [split] 0.999... equals 1 - by Violet - October 23, 2009 at 7:11 pm
RE: [split] 0.999... equals 1 - by theblindferrengi - October 23, 2009 at 7:18 pm
RE: [split] 0.999... equals 1 - by Violet - October 23, 2009 at 7:30 pm
RE: [split] 0.999... equals 1 - by theblindferrengi - October 23, 2009 at 8:03 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 23, 2009 at 8:22 pm
RE: [split] 0.999... equals 1 - by Violet - October 23, 2009 at 8:27 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 23, 2009 at 8:40 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 23, 2009 at 8:43 pm
RE: [split] 0.999... equals 1 - by Violet - October 23, 2009 at 9:12 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 23, 2009 at 9:20 pm
RE: [split] 0.999... equals 1 - by Violet - October 23, 2009 at 9:32 pm
RE: [split] 0.999... equals 1 - by fr0d0 - October 23, 2009 at 9:43 pm
RE: [split] 0.999... equals 1 - by Meatball - October 24, 2009 at 1:36 am
RE: [split] 0.999... equals 1 - by Violet - October 24, 2009 at 3:33 am
RE: [split] 0.999... equals 1 - by fr0d0 - October 24, 2009 at 5:46 am
RE: [split] 0.999... equals 1 - by Tiberius - October 24, 2009 at 9:35 am
RE: [split] 0.999... equals 1 - by fr0d0 - October 24, 2009 at 9:48 am
RE: [split] 0.999... equals 1 - by Tiberius - October 24, 2009 at 9:51 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 24, 2009 at 11:09 am
RE: [split] 0.999... equals 1 - by Tiberius - October 24, 2009 at 11:36 am
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 25, 2009 at 8:05 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 25, 2009 at 8:55 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 25, 2009 at 8:57 pm
RE: [split] 0.999... equals 1 - by Tiberius - October 25, 2009 at 9:29 pm
RE: [split] 0.999... equals 1 - by theblindferrengi - October 25, 2009 at 11:09 pm
RE: [split] 0.999... equals 1 - by Edwardo Piet - October 26, 2009 at 12:00 pm
By the way, 0.999... = 1 - by kılıç_mehmet - November 2, 2011 at 8:07 am
RE: By the way, 0.999... = 1 - by fr0d0 - November 2, 2011 at 8:22 am
RE: By the way, 0.999... = 1 - by LastPoet - November 2, 2011 at 10:27 am
RE: By the way, 0.999... = 1 - by Violet - November 2, 2011 at 9:46 pm
RE: By the way, 0.999... = 1 - by theVOID - November 2, 2011 at 9:48 pm
RE: By the way, 0.999... = 1 - by Violet - November 2, 2011 at 10:40 pm
RE: By the way, 0.999... = 1 - by IATIA - November 3, 2011 at 12:18 am
RE: By the way, 0.999... = 1 - by Tiberius - November 3, 2011 at 5:48 am
RE: By the way, 0.999... = 1 - by edk - November 3, 2011 at 9:02 am
RE: By the way, 0.999... = 1 - by IATIA - November 3, 2011 at 11:00 am
RE: By the way, 0.999... = 1 - by LastPoet - November 3, 2011 at 1:12 pm
RE: By the way, 0.999... = 1 - by edk - November 3, 2011 at 2:42 pm
RE: By the way, 0.999... = 1 - by Darwinian - November 3, 2011 at 3:22 am
RE: By the way, 0.999... = 1 - by fr0d0 - November 3, 2011 at 4:30 am
RE: By the way, 0.999... = 1 - by LastPoet - November 3, 2011 at 6:18 am
RE: By the way, 0.999... = 1 - by leo-rcc - November 3, 2011 at 7:34 am

Possibly Related Threads...
Thread Author Replies Views Last Post
  Question for finitists -- 0.999... = 1? Jehanne 23 8416 November 26, 2022 at 8:40 pm
Last Post: Jehanne
  Dot, Dot, Dot: Infinity Plus God Equals Folly Jehanne 0 820 November 26, 2017 at 11:34 am
Last Post: Jehanne
  Maths proves 1=0.999.. thus ends in self contradiction shakuntala 11 7250 December 21, 2014 at 3:57 pm
Last Post: Thumpalumpacus
  If 0.999(etc) = 1, does 1 - 0.999 go to zero? Euler 26 11080 April 30, 2013 at 12:17 pm
Last Post: Mister Agenda
  If 0.999 (etc.) = 1, does 1 - 0.999 = 0? Child of Stardust 16 12684 March 6, 2012 at 2:12 pm
Last Post: Child of Stardust



Users browsing this thread: 1 Guest(s)