Skip to content
TalkOrigins Archive logo

modernized archive preview

TalkOrigins Archive

Stable legacy routes with responsive reading, corpus-aware search, translation staging, and reviewed study support.

Home FAQs Browse Claims Index Timeline Dossiers Search Feedback Links Workbench Notebook Translations

Feedback Compilation

Feedback for August 2004

Selected reader letters and TalkOrigins responses from August 2004.

PreviousArchiveYear IndexNext
Entry 1

Feedback Letter

From
Matt
Comment
I have to commend your excellent website. I am a confirmed evolutionist and always will be with resources like this available.

I have to ask though: How exactly do you manage to maintain sanity when answering the same questions over and over again? I have been looking through the feedback and it is apparent that you have answered the "moon dust" and "intermediate fossil" questions many, many times. It must be frustrating yet you show no lack of composure. Well done.

On a completely separate note would like to ask if there are any exemplary sources of information on the current state of abiogenesis. I am also interested in your response to a book entitled "A Case for Faith". The author claims that the Stanley Miller experiment did generate amino acids but used materials (methane etc.) that have not been proven to exist on the early earth. How precisely do we know the composition of the early atmosphere and oceans?

Keep up the good work.

Response

From
Gary Hurd
Author of
Ancient Molecules and Modern Myths
Response
Thanks for your kind words. I personally failed to maintain sanity when dealing with creationists, but massive self medication with beer saved me. (Actually teachers are even bigger optimists than anglers, and we always try to recall that ignorance is always reborn).

Regarding your question about the origin of life, the best single reference for general readers I have is Iris Fry, "The Emergence of Life on Earth: A Historical and Scientific Overview" 2000:Rutgers University Press. Although this is only 4 years old, it is already due for revision to reflect significant recent results.

I have not read "A Case for Faith," but I am well familiar with the creationist's criticisms of the Miller/Urey experiment. A complete analysis exceeds the role of the feedback page. In short form, I would frame a responce as follows;

1) The Miller/Urey experiment was not, and is not the only basis for abiogenesis research. Thus disputing their result does not invalidate abiogenesis theories.

2) The geochemical research on the early oxidation state of the Earth's oceans and atmoshphere indicates that it was genereally reducing, but not to the same extent as the gasses in the original Miller/Urey experiment. However, there is additional evidence of Early Archaen highly reduced "oasis" and even for oxic "oasis." Consider that even today there are highly reduced locations on Earth such as methane seeps, hydrogen sulfide seeps, and hydrothermal vents.

3) The same experiment has been run with positive results (the generation of amino acids and other complex "organic" molecules) with different gas mixtures, and different energy sources.

4) The analysis of amino acids from meteorite revealed that they were in the same general proportion as the results of the Miller/Urey experiment. This makes the continued relevance of the Miller/Urey result self-evident.

Entry 2

Feedback Letter

From
André Blais
Comment
Firstly, I wish to thank those who have put so much time in what I find to be a very important subject, our origins, as this site is very informative and concise.

Secondly, and most importantly, I would like to point out what I believe to be a slight mistake in an article by Tim Thompson on the influx rate of moon dust. In the first part of his calculations under "Consequential Effect on the Earth" he writes that he will use the measurements from Cephela 1996 (1.5x1011 kg/yr) and goes on to calculate the total dust fall in 4.5 billion years using the rate of 1.5x108 kg/yr. He thus arrives to a mass of 6.75x1017 kg of dust in 4.5 billion years when the correct mass according to these calculations would be 6.75x1020 kg ( (1.5x1011 kg/yr)x(4.5x109 yr)=6.75x1020 kg ). Not a very significant mistake considering the fact he went on to use the correct figure when calculating the total volume occupied by the 4.5 billion-year dustfall. Just thought I'd point that out before someone starts nipping at your heels.

Response

From
Chris Stassen
Author of
Isochron Dating
Response
Thanks for taking the time to look through the calculations.

"1.5x1011 grams/year" is the same as "1.5x108 kilograms/year." Tim does switch units, but uses the same value throughout.

Entry 3

Feedback Letter

From
Joe Stoner
Comment
I have been arguing with a friend about the significance of mitochondrial DNA. I argued that just because humans have a common ancestor does not mean that ancestor was the first human nor does it mean no other genetic lines have existed. He replied, "It is highly unlikely those lines would have been so isolated as to not have mingled into the current pool. Then also to assume those descending from other "Eves," given a mixed pool, would be unfound even in the sampling used for the study is near preposterous. Let us assume two "Eves." The odds of finding only one of them 30 some times and not even one instance of the other is about the same as flipping a coin 30 times and getting all heads, about 1 in 1.07 billion." I am not sure how to respond to him. I don't understand how his probability calculation has any relevance. I would appreciate any assistance.

Responses

From
Wesley R. Elsberry
Response
"Mitochondrial Eve" is premised on the fact that human populations are finite in size. Sampling can cause traits to be "fixed" via genetic drift. The trait of interest here is the inheritance of maternal mitochondrial DNA. (It appears that there can be rare instances of inheritance of paternal mitochondrial DNA, but not to any extent that puts these studies at risk.) There are two parts to this; first, the original population with multiple maternal mtDNA lines eventually "fixes" only one of those lines, and second, genetic divergence in mtDNA allows us to estimate the time that has passed since origin of that line of mtDNA.

The sampling in the study is convincing that only one line of mtDNA remains in the human population for exactly the reason that your friend mentions: the odds that another line exists but remains unsampled is very small. The conclusion is that any other lines have ceased to exist in the human population; the age estimate for "mitochondrial Eve" attempts to work out just how long ago the existing mtDNA line originated.

The following Perl code performs a Monte Carlo simulation on a population with mtDNA lines denoted by letters (A,B,..,x). An initial population is formed of equal numbers of each. In each subsequent generation, each "individual" contributes some number of like "daughters" or fails to "reproduce". (The maternal descent of mtDNA helps simplify things here, since sons can be ignored.) Each run continues until only one line has surviving members in the population. A report is made at the end giving an average number of generations until each line became "fixed". This is meant as a simple demonstration of fixation of a trait, so the number of offspring rule used is simple. The user can change the number of original mtDNA lines and determining number of offspring per individual.

Example output:

All A lineage 26 times, average number of generations: 128.2
All B lineage 31 times, average number of generations: 115.7
All C lineage 15 times, average number of generations: 80.2
All D lineage 28 times, average number of generations: 98.5

This was for an initial population size of 100 and 100 runs made.


Skip the Perl code.

#!/usr/bin/perl
# mtEVE goes to Monte Carlo
# Simulation by Wesley R. Elsberry, 2004
# Customization section ---------------------------------
$nruns = 100; # How many times to run the Monte Carlo
# simulation
# Lines: the original lines present in the population
@lines = ("A","B","C","D");
# Number of individuals per line in the initial
# population
$initperline = 25;
# Offspring distribution. For a more or less stable population
# size, the sum of the entries should equal the number
# of entries.
#             1 2 3 4 5 6 7 8 9 _ 1 2 3 4 5 6 7 8 9 _
@offspring = (0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,3,3,4);
# Initialization section --------------------------------
srand; # Seed random number generator
# Run Monte Carlo ---------------------------------------
undef(%goodruns);
for ($jj = 1; $jj<=$nruns; $jj++) {
    # Initial population: individuals equally divided
    # into two lines
    undef(@pop1);
    for ($ii = 1; $ii <= $initperline; $ii++) {
        foreach (@lines) {
            push(@pop1,$_);
        }
    }
    $ii = 0;
    $done = 0;
    do {
        undef(@pop2);
        undef(%popcnt);
        foreach (@pop1) {
            $linetype = $_;
            $os = int(rand($#offspring+1));
            for ($kk = 1; $kk <= $offspring[$os]; $kk++) {
                # Add an offspring to the new population
                push(@pop2,$linetype);
                $popcnt{$linetype}++;
            }
        }
        $ii++;
        @pop1 = @pop2;
        foreach (@lines) {
            if ($#pop2 <= ($popcnt{$_}-1)) {
                $done = 1;
                $winner = $_;
            }
        }
        print sprintf("\b\b\b\b\b\b%06d\n",$#pop2);
    } until ($done);
    if ("" eq $pop2[0]) {
        print "The population crashed!\n";
    } else {
        print "$winner became only lineage in $ii generations\n";
        $popgen{$winner} += $ii;
        $wincnt{$winner}++;
        $goodruns{$winner}++;
    }
}
# Report on overall results.
foreach (@lines) {
    $ave = $popgen{$_} / $goodruns{$_};
    print "All $_ lineage $wincnt{$_} times, average number of generations: $ave\n";
}

From
Michael Hopkins
Response
Wesley gave a Perl script. Since not everyone knows how to install and run such a script I developed a Javascript version for two populations. Since Javascript does not, to my knowledge, offer a version of "push" I had to use a mathematically equivalent but not as eligant procedure. Javascript is rather slow so I set the parameters smaller than Wesley's suggested total number of runs of 100 and half the population size being 50. If a reader tries the larger values, the reader might be asked by the computer if one wants to abort the slow script. If any reader wants to run higher parameters be sure to save any work you are doing first.


Skip the Javascript code.

function drift(){
nruns = simulation.nruns.value; // get value from form with id="simulation"
                            // with input tag with id="nruns"
halfpopsize = simulation.halfpopsize.value; // likewise
simulation.output.value = ""; // clear the output window
goodrunsA = 0;  // track the number of runs which A gets fixed
goodrunsB = 0;  // track the number of runs which B gets fixed
popgenA = 0; // counts number of generations it takes to fix A 
             // for the average at end of function.
popgenB = 0;
for ( jj=1; jj<=nruns; jj++ )
{ pop1NumberA = halfpopsize;
  pop1NumberB = halfpopsize;
  ii = 0;  // counts generations
  
  do
  { pop2NumberA = 0; // for the next generation
    pop2NumberB = 0;
  
    for ( i=0; i<pop1NumberA; i++ ) // scroll through each A
    { if ( 0.5 > Math.random() )
      {} // No offspring for this individual A
      else
      { pop2NumberA = pop2NumberA + 2;  // Two offspring for this A
      }
    } // end for
        
    for ( i=0; i<pop1NumberB; i++ ) // This time scroll through each B
    { if ( 0.5 > Math.random() )
      {} // No offspring for this individual B
      else
      { pop2NumberB = pop2NumberB + 2;  // Two offspring for this B
      }          
    } // end for
        
    ii++;
    pop1NumberA = pop2NumberA;
    pop1NumberB = pop2NumberB;
        
  } while ( 0!=pop1NumberA && 0!=pop1NumberB );
      
  if ( 0==pop1NumberA && 0==pop1NumberB )
    simulation.output.value += "The population crashed!\n"; 
  else if ( 0==pop1NumberA )
  { simulation.output.value += "B became only lineage in "
                      +  ii + " generations\n";
    popgenB = popgenB + ii;
    goodrunsB++;  
  }
  else
  { simulation.output.value += "A became only lineage in "
                      +  ii + " generations\n";
    popgenA = popgenA + ii;
    goodrunsA++;  
  }        
} // end for (jj)
aave = popgenA / goodrunsA;
bave = popgenB / goodrunsB;
simulation.output.value += "Ave. generations to all A lineage: "
                  + aave + ".\n";
simulation.output.value += "Ave. generations to all B lineage: "
                  + bave + ".\n";
                  
}

Number of runs
Half Population size

Output:

Entry 5

Feedback Letter

From
James Mayo McCuan
Comment
I think that mainstream scientists should help creation scientists with the drive to get creation science taught in classrooms. I think that a small group of respected scientists should accompany these people the next time they go before a court to fight for their case. I also think that one outspoken member of every known practiced religion, from Buddism to Satanism should be allowed to be present as well. If creation scientists deserve equal time, then all religions deserve to have their view of creation represented. Respectfully, James McCuan

Response

From
John Wilkins
Author of
Evolution and Philosophy
Response
A good idea! then you could arrange that, so that science gets taught at all (because this would be a very heavy curriculum to cover) that a new subject gets created. You could call it, oh, I don't know, how about "Comparative religious belief" or "Creation stories"?
Entry 6

Feedback Letter

From
Andy
Comment
I was wondering what retroviruses have to do with evolution?

Response

From
John Wilkins
Response
There are two ways in which they might affect evolution, but neither have been demonstrated, so far as I can tell:
  1. Ted Steele has argued that retroviruses (viruses that can insert their genetic code into the DNA of a cell) play a role by transferring acquired immunity from a body cell to a sex cell via retroviral insertion.

  2. Around 40% or so of a mammalian genome is typically of retroviral origin, but nobody has yet shown that any of it is expressed. This may be because it is unlikely to be of use to the host, or it may be that natural selection immediately reshapes it so it is. Either way we would not see evidence. Or it may be we simply haven't yet come across the evidence that is there.
Entry 7

Feedback Letter

From
Jeff
Comment
I noticed you only post responses that support your opinion, where are the facts supporting the claims you are denouncing??

[snip]

Response

From
Michael Hopkins
Author of
Creation/Evolution Organizations
Response
Jeff is most likely referring to the Post of the Month since he was browsing that section before sending his feedback. If this is the case then I must ask Jeff if he has ever nominated a post to be the Post of the Month or actually voted on the nominees? Has he ever posted anything to the talk.origins newsgroup? If he not done any of these things then he has no right to complain since he can be part of the process to choose the post of the month.

Jeff asks us "where are the facts supporting what we are denouncing?" That strikes at the heart of the problem. What facts support creationism? If Jeff thinks he has these facts, then he is encouraged to post them to talk.origins. Though he is strongly encouraged to first search this web site to see if it has already shown what is wrong with the alleged "facts." Hundreds of claims of the evolution deniers and what is wrong with them can be found at the Index to Creationist Claims.

I edited Jeff's feedback to remove a copy and paste of The Fool Says in His Heart... by Rev. Dale Tedder. Feedback is not a place to violate copyright law. I am always amazed at how many people think that plagiarism is okay.

Entry 8

Feedback Letter

From
Rickeye
Comment
It appears you are showing signs of succumbing to a common fate of various causes. Your site is excellent and I stop in frequently to review new material, but June's Post-of-the-Month, part 2 disappointed me. It is not that I disagree with much of what the author and "Ben" (!) discussed regarding the problems in the Middle East, but rather its prominent appearance on a web site dedicated to discussing evolution is what disturbs me. Aside from a token mentioning of that aspect of their conversation, the remainder deals primarily with political matters. It is not that they are not important, but what do they have to do with evolution? Yes, there is a connection in the letter, but it is extremely tenuous. A brief annecdote to clarify the problem (feel free to delete). When graduating from Berkeley in the mid-80's, red ribbons were commonly seen on backpacks, etc. to show support for the abolition of apartheid in South Africa. I had one and on graduation day many of us wore it on our gowns. Before the ceremony, however, some people would come up with about five different-colored ribbons for us to wear: "Green is to show your support for the environment; blue is against bio-weapons; yellow to demonstrate against the U.S. position in Central America..." You get the idea. Needless to say I wore just the red one. It is not that those other issues were not important, but it was a ridiculous example of "piling on" when you have a good cause. This happens time and time again in various demonstrations for whatever cause. Just watch the news and read the papers to see what groups show up for one cause. The reason for this long-winded letter is to encourage you to keep your web-site focused on the matter at hand and not stray from your mission. Do not lose focus on what matters regarding enlightening people about evolution and let those that want to wax poetic about other worthy causes find other worthy venues. Do not dilute your strength.

Response

From
Mark Isaak
Author of
Bombardier Beetles and the Argument of Design
Response
People in the talk.origins newsgroup frequently post "off-topic" posts. Sometimes they arise as asides which takes on a life of their own. Sometimes people want to pass on something interesting or just to rant. The extra diversity of topics, in my opinion, adds to the character of the newsgroup (although others think it detracts). The purpose of the Post of the Month is to select a post from the talk.origins newsgroup "that comes closest to capturing what the newsgroup is all about." An occasional off-topic Post of the Month fits this purpose.

Notwithstanding all that, the June PotM is relevant to the creation/evolution controvery. It talks about rational religion vs. fantatical religion, which is very nearly the core of the controversy. Yes, it also talks about politics, but politics has been part of creationism since the Scopes trial at least, and under a president who wants to make scientific findings subject to political decree, it is now an inescapable part of science, too.

Entry 9

Feedback Letter

From
Chris Gravelle
Comment
How can one be sure of the actual age of the earth when one was not present? I understand the evolutionist perspective and its reasoning behind its fictional theory, but after research and observation and study of the creation theory, I would have to disagree with the evolutionist perspective in the many fallacies which this theory contains. I admit creation is a religion for the belief in a creator God, but evolution is also a religion because of its belief in that nothing exploded and became what now know is the universe which the word itself means one spoken sentence when dividing the word universe. This is all I have say regarding your theory and mine.

Responses

From
Chris Stassen
Author of
Isochron Dating
Response
One may be sure about the age of the Earth, in roughly the same way that a jury of twelve people may all be convinced beyond a reasonable doubt as to the accused's guilt, despite lack of eyewitnesses to the crime. The evidence left behind can be compelling and overwhelming, as it is in regard to the age of the Earth.

It's very easy to make vague, unsupported assertions about "fallacies." Because it is so easy, empty claims are not really noteworthy. It would be far more interesting if you could go through this archive's Age of the Earth FAQ and document several fallacies in it.

From
Tim Thompson
Author of
The Recession of the Moon and the Age of the Earth-Moon System
Response
You say: "... but evolution is also a religion because of its belief in that nothing exploded and became what (we) now know is the universe ...". This is a false statement. There is no aspect of any evolutionary theory, so far as I know, which would accept as fact, or seriously entertain, such a notion. Indeed, only creationists believe in creation ex-nihilo in its literal sense.
Entry 10

Feedback Letter

From
Dr. C. David Fischer, Jr
Comment
Regarding the evolution of wings, from 1997:

I have a question. It's about the evolution of wings. The question is this: How is it possible that wings evolved at all? By my favorite theory of evolution, things evolved with a purpose, i.e.- reptiles evolved into amphibians so that they could live on land. So, since partially evolved wings are are pretty much useless for anything, how could they have come to be? Is it possible that they were used for something besides flying? Thanks.

Sincerely, E-Man at [snip email]

E-Man

Response from John Wilkins:

There is a philosophical point I'd like to make before addressing the question of wings.

Evolution does not look ahead - it is not clairvoyant. Fish (I presume the 'reptiles' was a typo) did not become amphibians in order to live on land. They acquired features that eventually permitted them to live on land, but they were not adaptations for that until living on land was 'within their grasp', so to speak. Only then were features that made living on land possible subject to selection for that purpose.

Another way to say this is that evolution is not guided by some goal or final purpose (which is not to say that there are therefore no goals or final purposes - just that it is not a matter for scientific theories). Things appear for some immediate function and may be co-opted for a later use. The technical term that is accepted now is 'exaptation', while a feature that is of immediate use is an 'adaptation'. Useful features in general are called 'aptations'. This terminology is due to Stephen Jay Gould and an African naturalist Elisabeth Vrba.

As to wings: if you read the chapter on wings in the recent excellent book by Richard Dawkins, Climbing Mount Improbable, you will get a better idea how flight could evolve generally, but as to bird's wings and feathers, there is recent evidence that feathers were initially varieties of scales used for insulation (recently feathers were induced in chicks to form from scales on their legs, and a dinosaur in China showed an imprint of feathers along its spine). Once there, feathers must have been co-opted for a range of reasons. One theory is that they were used to catch prey - insects and small rodents - as a kind of net. Once you have them on forelimbs, it is not a long leap, if you'll forgive the pun, to flight, as we see incipient fliers all around us in the form of tree leapers and gliders. Straight selection would account for it.

I hope this answers your concerns.

I refer you to

Science, Vol 299, Issue 5605, 402-404 , 17 January 2003
Wing-Assisted Incline Running and the Evolution of Flight
Kenneth P. Dial

Flapping wings of galliform birds are routinely used to produce aerodynamic forces oriented toward the substrate to enhance hindlimb traction. Here, I document this behavior in natural and laboratory settings. Adult birds fully capable of aerial flight preferentially employ wing-assisted incline running (WAIR), rather than flying, to reach elevated refuges (such as cliffs, trees, and boulders). From the day of hatching and before attaining sustained aerial flight, developing ground birds use WAIR to enhance their locomotor performance through improved foot traction, ultimately permitting vertical running. WAIR provides insight from behaviors observable in living birds into the possible role of incipient wings in feathered theropod dinosaurs and offers a previously unstudied explanation for the evolution of avian flight.

Flight Laboratory, Avian Studies Program, Division of Biological Sciences, University of Montana (UM), Missoula, MT 59812, USA. E-mail: [snip email]

Here we have an excellent example of evolutionary pressure on better wings: young chicks with better wings can chase prey up slopes not accessable to those with lesser wings. And they have a better chance of escaping predators. Wings were not evolved for flight. Rather, for warmth, chasing and capturing prey, and escaping predators. Once they became effective for flight, flight happened.

Dave Fischer

Entry 11

Feedback Letter

From
Ed
Comment
Guys, I think Walker's comment in the July 2004 feedback ought to be removed or censored. It is evident that a lot of kids find their way to this site, and that's not the sort of vulgarity they or their parents/teachers expect at your site. Plus, it could end up getting this site blocked by various library or schools. Besides, Walker's comments have zero substantive value.

Response

From
Gary Hurd
Response
Yeah, I see your point about the school language filtering issue.
Entry 12

Feedback Letter

From
Sarah
Comment
Hi, I didn't know where else to contcat you but I just wanted to let you know that I used a few examples from your section on the "creationist claims" to defend evolution in response to an email I recieved from a creationist. I don't know if I even need to tell you or if I wasn't supposed to, but I just wanted to let you know. This is a great site by the way. Very informative.
Entry 13

Feedback Letter

From
Peter Stam
Comment
Guday,

Just intrested in knowing how much faith is needed to hold onto the theory evolution?

To say this site will only accept scientific basis to debate, so dont bother presenting the creationisits side of the issue, leads to big chunks of fact being ignored, and the dependance on a few old skulls, that may or may not have been off a previous species of animal that has since become extinct.

What about facts like dust on the Moon, over Millions and Billions of years of constant build up, yet it was only a few inches thick. Did some kind of wind come every 10,000 years to blow off the excess dust? or was it never that old in the first place?

Oh yes the bible can't be relied on because it says stuff like, the sun goes round its course, leading many to believe that the world was flat and that the sun revolved around the earth. What failed to be updated since that argument, was that the sun does revolve around on a course, but from Gods perspective, It revolves around the Milky Way Galaxy.

The only thing it conclusively proves is the failing of mans point of view (which even includes church going christians) not the failing of Gods word. Which in turn proves other facts written in the bible, that man is flawed and God isn't. He wont cave into peer presure, or manipulate his view because the scientific community won't like it.

Before this message is deleted because it doesn't focus on the sites point of view. What is going to happen when the Mystery of billions of years is taken away? Will evolutionists still be able to believe so strongly in evolution when constants like C are proven to be dramatically slowing down, which scientists such as Barry Setterfield have proven, using various scientific methods? What effect does a discovery like that one have, for a scientific community that has relied apon C like a crutch? Will science accept Barry Setterfield's discovery after careful study through a "scientific process" or will it be thrown out because of the ramifications?

So what is faith anyhow, is it some mystical belief system that cannot have base of facts? No faith is purely beleiving in what something or someone says. Is it more logical to believe that someone beyond our understanding was able to create our existance in a manner we dont understand, Or would it be easier to believe that first there was nothing then it exploded in a big bang and ever since then stuff has happened by random accident. Evolutionism is just as much a religion and requires just as much if not more faith than any other religion.

So if energy can be created from nothing why cant it be done now? Evolution doesnt have an answer, though Christianity does, because on the 6th day when creation was finished nothing more was created from then on, wether it be energy or new kinds of animals (kinds interbreading to produce varieties of the same kind are not a new kind) ie fish cant breed with reptiles to create birds. Has science ever been able to create something from nothing without using something else in the first place?

Also doesn't the law of entropy dictate that anything ordered moves to chaos? how did something as intricate as a living cell survive against such laws? Does the hundreds of thousands of pages of information stored in a DNA molicule support creation or evolution? have you ever looked at static on a TV screen and seen anything that resembles an orgaised or designed form? Without input from a director?

I place my trust in a supernatural being who resides outside of time and space, who i call Jesus or God, Who created evereything with his word, and died so that my sins and flaws could be forgiven, that if i choose to beleive in him, I will live to experience more than just this 3 1/2 Dimensional hologram.

Science cannot even trust 50 year old text books on evolution theory.

Thankyou. Peter Stam

Response

From
Tim Thompson
Author of
Meteorite Dust and the Age of the Earth
Response
First mistake: The moon should not have gathered a deep surface layer of dust, so it is no surprise that it indeed did not do what it should not have done anyway. See Meteorite Dust and the Age of the Earth, in this archive.

Second mistake: Barry Setterfield rather obviously failed in his attempt to demonstrate any time variability of the speed of light from the historical record, as have all other creationists who have tried. See The Decay of c-decay, in this archive.

Third mistake: The idea that "nothing" suddenly became the big bang has never been part of "big bang" cosmology. Creationists always like to parade that claim, but it is disingenuous at best, since no scientist ever actually believed such nonsense. The correct interpretation of the singular beginning of the universe in general relativity (the "bang"), is that general relativity is an inadequate theory to describe that early era of the universe. It has long been known that quantum physics must be taken into account here. In one promising line of investigation, amongst many, string theory opens the door to pre big-bang cosmology, by eliminating the singularity that is a necessary ingredient of a classical theory, but not a quantum theory. Another string interpretation allows for the colliding brane scenario in a cyclic universe cosmology. Cosmologists never thought that "something came from nothing", so the criticism is pointless.

Fourth mistake: No, the law of entropy does not dictate that anything ordered moves to chaos. No law of physics does, except as they are commonly misused by creationists. The law of entropy (correctly referred to as the second law of thermodynamics) does say that systems in thermal contact will come to thermal equilibrium. But it is true only for statistically large collections of objects. It is known from both theory & practice that this law is not necessarily applicable to situations dominated by quantum physics. See, for instance, Nanotubes may have no 'temperature' (August, 2004), Quantum Heat Engines, the Second Law and Maxwell's Daemon (February 2004), Statistical thermodynamics of quantum Brownian motion: Birth of perpetuum mobile of the second kind (November, 2001), or the Thermodynamics, Evolution and Creationism FAQs, in this archive.

If one is going to make "factual" claims, one should first be able to distinguish fact from either fiction or just plain fantasy. This is an exercise at which creationists are notoriously weak. There is a distinct and important difference between trusting a supernatural God, and trusting non-supernatural, human creationists. One of the two is rather more reliable than the other, and it is left as an exercise for the reader to figure out which.

Entry 14

Feedback Letter

From
William Tobias Straney
Comment
Thank you for posting your response to my criticism of fallacy CB400 on the June 2004 board. Let me try to explain the inherent contradiction more clearly. I apologize in advance for the length, which may preempt you from posting it, but I think my brevity last time preempted you from fully understanding my claim.

Either freedom is a biochemical event (i.e., reducible to one form or another of biochemistry) or it is not.

Let's suppose that freedom is a biochemical event resulting from a biochemical history (which is the position of evolutionary theory). If freedom is a biochemical event, it must "obey" or operate according to biochemical laws. If it operates according to biochemical laws, it cannot actually be free, being wholly determined by the laws which govern its operation. (I.e., predetermining Laws exclude Freedom.) If freedom does not operate according to biochemical laws, it is not an inherently biochemical event.

Let us assume that freedom is not an inherently biochemical event, or is not wholly determined by biochemistry. What becomes of the evolutionary supposition that there are only physical (general) and biochemical (specific) events and the laws that govern them? Isn't the introduction of freedom into the universe an admission that the universe is not entirely governed by physical laws? If so, how does evolutionary theory buttress the claim that all events are physical events? And how do not-entirely-physical realities come from physical ones?

And if freedom is not essentially a biochemical event, what is it? If you mean to say that freedom, fundamentally, is like everything else in the universe and operates according to physical or mathematical laws, why do you call it "free"? What does it mean to say that a determined event is a free one?

That is the argument in a nutshell. But supposing it is an untrue argument, you would at least have to admit that the introduction of actual freedom (the ability to elude being wholly determined by this or that physical law) into evolutionary theory directly contradicts the evolutionary claim that all events are inherently physical (and therefore wholly determined). Or wouldn't you? Can you a explain how it is possible in principle that an organism that has something that is beyond physical determination can still be considered essentially physical / empirical? How will evolutionary theory (which only admits the existence of the physical and physical laws) quantify or register the existence of something that partially transcends the physical? I do not mean, "How is freedom more complex than, say, dirt or the liver?" I mean, how can there be anything in an inherently governed universe which is not itself entirely governed?

Your counterargument relies on the analogy of size, which is a false analogy in this case. "Large" can be extrapolated from "small," and in fact, it is impossible to speak of "small" without implying "large" (else, what are we comparing the small thing to to determine that it is small?). "Biochemistry / physical determination" and "freedom" do not even suggest one another, much less are they inherently related--i.e., the universe for all we know is a purely physical universe with only the illusion of freedom presented to some of its distinct entities, which means we can conceive of a physical universe that has no freedom. "Small" necessitates the existence of "large," and vice versa. "Determination" necessitates the non-existence of anything that does not act according to determination--such as freedom.

And the analogy turns back on you: if you were right, then saying that you can extrapolate freedom--which is to say, the ability to defy determination--from biochemistry (which is to say, determination) is like saying that one can extrapolate "large" from a system which is by definition small and completely determined by smallness. How are you justified in extrapolating a system that at least partially defies determination from a system which is inherently determined?

You made a rather incredible claim: you said that such synergetic effects as the movement from total physical determination to the ability to be not wholly physically determined do happen. Could you point to such a documented (not to mention perfectly huge) transition as would compare well with the one we're discussing? Don't tell me that you have an instance wherein a simple thing became a complex thing. Tell me how a thing transcended the laws by which it was brought into existence. As I'm sure you can see at a glance, anybody's skepticism in such a claim would have to be extreme. I have never seen, nor can I logically think it feasible that I shall ever see such a contradiction occur.

I think your last paragraph is irrelevant. Starting with "Probably you believe" you argue that evolutionary theory explains "animation"--which I do not here argue with (I do, in fact, believe in most of the tenets of evolutionary theory). I am not arguing that evolutionary theory cannot explain living organisms. I am arguing that it cannot explain free ones without tearing up its crucially held principle that all events are determined by certain laws; I am arguing that *freedom* is not a theoretical or actual possibility in a system which, by definition, is wholly determined. You evolutionists seem to be arguing that the physical order is both only physical and somehow capable of defying physical determination (in the form of freedom). Evolutionary critics like myself and Johnson are only pointing out the inherent logical contradiction in that claim. If you can show that the contradiction is rather a paradox, I'd be glad to know how that is possible. But again, you're up against trying to prove that some X--which is by definition denied in Y--can be extracted from Y or result from Y. What unknown Z can make Y not just Y but also not-Y in the same way, to the same degree, and at the same time?

Tobias

Response

From
Mark Isaak
Response
Your argument (as I understand it) hinges on the premise,

If it [freedom] operates according to biochemical laws, it cannot actually be free, being wholly determined by the laws which govern its operation.

However, laws can never wholly determine anything. The Heisenberg Uncertainty Principle points out that the very act of determining something (such as, say, the position of a particle) mucks up other things (such as the particle's velocity) so that they become more uncertain. Thus absolute determinism is impossible in a purely physical system. One may argue that things are still determined at some metaphysical level, but that would be beside the point of your argument. Ironically, one must add supernatural entities, able to "know" things without physically looking at them, to achieve determinism.

Entry 15

Feedback Letter

From
Chris
Comment
I think that the explanation for young earth proof twenty (The Earth's Rotaion is Slowing Down) is flawed.

On This Page

If the earth's rotation is slowing down it should not be doing so at a uniform rate. Aceleration and deceleration do not follow linear curves. Unless planets do not follow the normal rules for aceleration and deceleration the calculations on that page give a lenth of day in the past shorter than it should be.

Response

From
Tim Thompson
Author of
The Recession of the Moon and the Age of the Earth-Moon System
Response
Whether or not acceleration (or deceleration, which is just acceleration with a '-' sign in front) "follows a linear curve" is entirely dependent on the particular problem at issue; the general statement that they do not is incorrect.

The rate at which Earth spins on its axis is expressed as a length of day (LOD), which is 23h56m04.s0989 with respect to the fixed stars (the sidereal day), or 24h00m00.s0084 with respect to the sun (the solar day). The rate of change of that spin is expressed as a variability in the LOD. The LOD is in fact quite variable, on a daily basis due to friction at the core-mantle boundary, or variations in atmospheric winds, and on annual cycles related to seasonal changes in atmosphere & ocean circulation (International Earth Rotation and Reference Systems Service (IERS), IERS Rapid Service/Prediction Center for Earth Orientation Parameters, Historical Development of Earth Rotation Knowledge). There is also a long term trend of slowing imposed by the tidal interaction between Earth and the moon (as described in my own FAQ entry linked above). It is this last trend that is at issue here.

The short-term accelerations mentioned above are highly variable, albeit with relatively small amplitude. The long term trend imposed by tides is almost constant over the last 3 billion years or so, at least when averaged over fairly long periods, but increasingly variable before that. Paleontological evidence indicates that the length of day about 620,000,000 years ago (precambrian) was about 21.9 hours ( Precambrian Length of Day and the Validity of Tidal Rhythmite paleotidal Values, G.E. Williams, Geophysical Research Letters 24(4): 421-424, February 15, 1997). The rate of change given in the FAQ (0.005 sec/year/year) translates into 0.0014 sec/day/century, insignificantly different from the standard quoted value of 0.0015 sec/day/century (Earth's Variable Rotation - Geophysical Causes and Consequences, Kurt Lambeck, Cambridge University Press, 1980). But (0.0015 sec/day/century) x (6,200,000 centuries) = 9,300 sec/day, the accumulated time that the day has lengthened since then, assuming a constant rate. That's about 2.58 hours. Subtract that from 24, and you get 21.42 hours, which is not all that different from 21.9 hours, considering the uncertainties involved.

The rate of change of length of day, and the recession rate of the moon, are most rapid during the first few hundred million years of the Earth-moon system (i.e., Evolution of the Earth-moon system, Touma & Wisdom, Astronomical Journal 108(5): 1943-1961, November 1994), but slows rather quickly after that. The rate used above (0.0015 sec/day/century) is probably unusually high, due to the favorable size of Earth's ocean basins, which encourage resonance with the moon (i.e., A stochastic model of the Earth-moon tidal evolution accounting for cyclic variations of resonant properties of the ocean: An asymptotic solution, Kagan & Maslova, Earth Moon and Planets, 66: 173-188, 1994).

The standard creationist argument addressed by Dave Matson's FAQ (How Good Are Those Young-Earth Arguments?) assumes that the leap second added to the atomic time scale, to keep it in synch with the civil time scale, is a measure of the rapidly slowing Earth (on the order of 1 sec/year/year or faster). Of course, if Earth slowed that rapidly, then the day 620,000,000 years ago would be 1,722,000 seconds shorter, a hard thing to pull off when the day only has 86,400 seconds to lose. If the leap second really did represent the spin down rate of Earth, the creationists would have a point. But it is no such thing, it is only a symptom of the fact that the two time scales, atomic & civil, tick at slightly different rates creating an accumulating difference between them. The leap second is an arbitrary device designed to keep that accumulated difference from exceeding 1 second (see Leap Seconds from the U.S. Naval Observatory's Time Service Department).

[Webmaster's note: A reader noticed that sidereal and solar days had been inadvertently reversed. This has now been fixed.]

Entry 16

Feedback Letter

From
Adam Crowl
Comment
Hey guys! Thanks for all the excellent work. Just a query about the response to the thickness of the crust argument from an old Creationist book - Williams, discussing Kelvin's thermal modelling of the Earth. The responses are good but seem incomplete as they don't discuss convection in the mantle as a mechanism of efficient outwards heat-flow. Can anyone in TO Land enlighten us? I'm not a geophysicist, just a physics student so I'm vague on the details.

Response

From
Chris Stassen
Author of
Isochron Dating
Response
Lord Kelvin's calculations treated the Earth as a solid, and did not consider convection, which would have lowered his limit. Convection is discussed in some detail in Energetics of the Earth, which was linked in the original response. That work also includes several references to detailed technical works on convection within the Earth.
Entry 17

Feedback Letter

From
Rick Logan
Comment
I had a question about the Paluxy River finds. One side says "Creationism", the other side says "fraud". I'd like to suggest a third possibility. Just long enough to ask. Just bear with me. Could some other animal have existed with tracks similar to a human being's? What conditions would be necessary for this result? Tracks mistaken for human footprints--is it possible? Has any doctor analyzed these fossil prints? You can detect some medical problems by studying tracks. When Creationists talk about a critter 9 feet tall, that sounds like a dinosaur to me, not a human being. Any constructive comments would be appreciated. Thank you for your time. Sincerely, Rick Logan

Response

From
Mark Isaak
Response
In fact, most of the Paluxy tracks are weathered or partially filled dinosaur tracks. Others are simple erosional features, and a few were carved by people. See The Texas dinosaur/"man track" controversy.
Entry 18

Feedback Letter

From
Tom Baillieul
Comment
I'd like to add a bit to Mark Isaak's response to Paul Koester about the origin of Helium (July 2004 Feedback). The Helium we use in blimps and party balloons is indeed derived as a by-product of natural gas production. However, finding Helium in economic quantities is not a common occurrence. Two conditions are necessary - 1) a stratigraphic trap, that is, a bowing up of rock strata containing impermeable shale layers which act like an upside-down bowl under which gases and oil can accumulate; and 2) a source of Helium. The latter is most often a uranium concentration in the bedrock lying deep below the sediments within which the oil and natural gas are produced. The light Helium produced from alpha decay in the uranium ore migrates upwards through the oil-bearing rock and becomes trapped beneath the shale along with the oil and gas. Just such a geological coincidence is found in the area around Amarillo, Texas, where most of the Helium used in the U.S. is produced. About 5% of the gas produced in oil and gas wells around Amarillo is Helium.

So significant is this occurrence that the Amarillo Science Museum hosts a very large outdoor sculpture of a Helium atom.

There may also be large accumulations of helium in stratigraphic traps lying above uranium concentrations where no oil or natural gas is involved. However, the economic incentive to look for these occurrences is lacking.

Entry 19

Feedback Letter

Comment
How does one know/determine how old the stars are? And how do scientists know that some of the stars we view from earth today don't really exist anymore (all we see is the light that finally has reached us but the star isn't there anymore)?

~ Anonymous

Response

From
Tim Thompson
Author of
The Recession of the Moon and the Age of the Earth-Moon System
Response

Ages of Stars

The age of a star is determined by comparing theoretical stellar evolution models with the observed characteristics of a star, as shown on the Hertzsprung-Russell diagram (commonly known simply as the HR diagram, or a color-magnitude diagram).

The stellar evolution computations work by starting with a computer model of a young star or a protostar, and then allowing the clock to tick, and the star to age, in accordance with the known & applicable laws of physics, of which there are quite a few in this case. The brightness and color of the modeled stars are tabulated as a function of time, and then compared to the observed, non-random pattern of stellar properties from the HR diagram (there is an example of this on one of my webpages: The Hertszprung Russell Diagram and Stellar Evolution).

Of course, this means that the confidence we place in the derived ages is based on the confidence we have in the correctness of the details of physics that go into the models, which are quite complicated, and the fidelity of the match between derived & observed stellar properties. The match in fact is quite extraordinary, in that the synthetic HR diagrams, built from the evolution models, reproduce even small details, typically gaps or clumps, in the observed distributions of stellar properties. This is extrordinary because the models simply let physics work over time, with total ignorance of any expectations. There is no particular reason why they should reproduce the real patterns on observed HR diagrams, unless those patterns are really representative of the change with time of the observed properties of stars.

Are the stars still shining?

All of the stars we see with our eyeballs are within a few thousand light years of Earth, where a light year is the distance over which light travels in one year, about 6,000,000,000,000 miles. Since stars usually (but not always) change vewry slowly with time, the few thousand years represented by that distance don't amount to a hill-of-beans in the lifetime of the star. So we can be confident that the stars are still there.

But not always. For instance, supernova 1987a went off in the Large Magellanic Cloud, some 169,000 light years away. But the explosion was observed in 1987, meaning that we saw that star for about 169,000 years, during which it was really not there. So it can happen, but we can tell from the type of star, whether or not there is a chance that it's not there any more. And keep in mind that stars don't just fizzle out. They go out with a bang if they are big enough, or with a planetary nebula if they are not (that's what our sun will eventually do).

Entry 20

Feedback Letter

From
Greg Czebatol
Comment
Just a small recommendation: when you refer folks to the discussions at the talk.origins newsgroup it might be useful to point out (as you do on this feedback posting page) that it is accessible via Google groups for those of us without newsreaders. And keep up the great work...
Entry 21

Feedback Letter

From
Larry Gilman
Comment
I've never sent fan mail to a website before, but Talk.origins has got to break the rule.

Your archive of level-headed, ultra-detailed responses to creationist arguments is invaluable. Just yesterday I used it to refute a bogus quote on the Into the Wardrobe C.S. Lewis site attributed to a "French scientist."

Just a big Thank You from Vermont. Keep up the good work.

Sincerely,

Larry Gilman, PhD

Entry 22

Feedback Letter

From
James McCuan
Comment
Dear sirs, ladies, tiny purple and hairy things,

I just want to thank you all for providing me with a wealth of information on this site. I first discovered it while attempting to justify my own beliefs to myself. I now find myself coming back day after day simply because i'm engrossed in the material. I'm thinking of chucking my 12 years of military service out the window to go back to school and study one of the sciences. Do you think they will take a dumb sailor past his prime? To John Wilkins personally- I don't know you from "Adam", but anyone who recommends Terry Pratchett as reading material can come sit in my favorite recliner any day. This site is the only thing that is keeping me from reading "THE WEE FREE MEN" and "A HAT FULL OF SKY". It takes a considerable gravitational force to pull me away from Pratchett and allow dust to settle on him. I have nothing in particular against peoples' religious beliefs. One thing I can never get my head around though...If you can't fathom life developing through tiny changes over millions of years- How can you fathom the most complicated life form imaginable simply having existed for eternity? Feel free to include my e-mail address in this if it manages to make the cut. I don't mind "I hope you go to Hell!" e-mails. It will be something like everyday conversations on a naval ship. You can't hurt an old sailors feelings. Thanks a Big Bang Bunches people. Even if I don't make the cut.....i'll keep reading. James McCuan

Response

From
Mark Isaak
Response
I know an air force vet who went back to college in the sciences. You're not going to let her show you up, are you?

And I agree, Terry Pratchett was one of the most significant things I learned from talk.origins.

Entry 23

Feedback Letter

From
Cyrus Moon
Comment
Sigh. On behalf of all cool-minded Christians in the world, I would like to apologize about the few hot heads that aren't giving Jesus Christ a very good name. (You can refer them to 1 John 4:20). I've perused your site, and I think it's very well done; the articles I read and your feedback responses were written very professionally. It's not always easy to read things that might seem to discredit what I believe in, but as a seeker of truth I'm not going to turn a blind eye to the other side of the argument. I appreciate all the work and effort put into this site.
PreviousArchiveYear IndexNext

TalkOrigins Archive

Modernized preview preserving legacy route coverage while moving repeated navigation into the site-wide shell.

Home | Browse | Search | Feedback | Links | Translation Queue