Discussion
Plot a line graph with the number of “radioactive” particles left (you must start with 200 at time = 0. Subtract the first amount that flipped over for the first 5,000 years. Then subtract the second amount from that number — not the 200 — at 10,000 years, etc.) versus time (on the horizontal axis). Be sure that it is properly labeled and titled.
Explain why your “radioactive decay” curve is not perfectly smooth; in other words, besides the fact that this is not really radioactive and you are shaking a tray instead of the passage of real time, why are real radioactive decay curves very predictable?
What do mathematicians call the shape of this curve?
If the half-life of your sample is 5,000 years, calculate the value for k, the rate constant. Be sure to show your calculations.
Assume that your “radioactivity” was C-14 (carbon-14, carbon with mass number 14) and that it undergoes beta decay. Write the balanced nuclear equation for this reaction.
Carbon dating can be used to get a measurement of the age of a carbon-containing sample. (Scientists actually use mass spectroscopy and measure ratios of isotopes, which is a bit more complicated than can be replicated here.) Using the curve you created in Step 1, determine the age of a sample with this amount of radioactivity left:
75%
50%
25%
0%
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

