You probably have seen or read news stories about fascinating ancient artifacts. At an archaeological dig a piece of wooden tool is unearthed and the archaeologist finds it to be 5,000 years old. A child mummy is found high in the Andes and the archaeologist says the child lived more than 2,000 years ago. Ever wondered how they know?

Carbon dating is a way of determining the age of certain archaeological artifacts of biological origin. Your job is to write a program that figures out how old a sample is.

This is a real velociraptor fossil. It's very old.

When an orgnanism is alive, its matter will have a constant amount of a special type of carbon called carbon-14 (c14). It turns out all living things have the same fraction: wood, mammoths, your body right now... small cats... all have the same amount.

An important property of c14 is that it dissapears at a constant rate: every 5,700 years the amount of c14 is halfed (its half life is 5,700 years). For example, if one starts with 100% of the natural occurence of c14:

    In 5,700 years we expect there will only be 50% left.
    In 11,400 years we would expect there will only have 25% left.
    And so on...

When an organism is alive, it keeps replentishing its supply of c14 to the natural level. But when it dies (moment of silence), the amount of c14 starts to decrease. By testing how much c14 is left, scientists know how how long a dead thing has been dead for. Good times.

Lookup Table

To get started, lets make a lookup table that maps the percent of c14 remaining to the number of years the sample has been dead for. Print out the percent c14 remaining, and the number of years passed for the first 20 half lives. Your table should look like the following:

Think about the variable type that you use to keep track of the amount of carbon left. What happens if you use an integer for percent?

Extension

If you finish early, and have extra time, try this extension.

For scientists it will be much more useful for them to input the percent of natural c14 that they measured, and have the program tell them the age. Repeatedly ask the user to enter a percent of natural c14 remaining and then output the age of their sample.

The formula for the age in years of a sample, given the percent of natural c14 remaining is:



To take the natural log of a number (the ln function) use the method:

Math.log(value)

Overall, your program should look like the following

All the best, and ask questions if you don't understand something (or want to know more about the archaeology)