Register | Sign In


Understanding through Discussion


EvC Forum active members: 64 (9164 total)
7 online now:
Newest Member: ChatGPT
Post Volume: Total: 916,772 Year: 4,029/9,624 Month: 900/974 Week: 227/286 Day: 34/109 Hour: 4/3


Thread  Details

Email This Thread
Newer Topic | Older Topic
  
Author Topic:   Rebuttal To Creationists - "Since We Can't Directly Observe Evolution..."
Taq
Member
Posts: 10073
Joined: 03-06-2009
Member Rating: 5.2


Message 2551 of 2932 (903583)
12-13-2022 1:19 PM
Reply to: Message 2548 by Kleinman
12-13-2022 1:01 PM


Kleinman writes:
You can have multiple evolutionary trajectories occurring in single evolutionary process. But the evolutionary process in one evolutionary trajectory has no mathematical effect on the other trajectories except biological competition.
You are still getting the basic maths wrong. You are claiming that the chances of getting an adaptive phenotype is the mutation rate. That is wrong because there can be multiple mutations that are adaptive. It isn't that hard to figure out.
If there are 10 possible mutations that confer antibiotic resistance then the rate of adaptive mutations would be 10*mutation rate.
Sexual reproduction doesn't eliminate competition, Desai's experiment demonstrates this by increasing the frequencies of a few beneficial alleles while eliminating some of the less fit alleles.
"Desai let his sexual replicators carry out 90 generations of amplification of the beneficial alleles but stopped the competition process at that point by inducing sexual reproduction before fixation occurred."--Kleinman
You claimed that sexual reproduction stops competition.
Don't let me stop you, survey of physics expert. Go ahead, compute the entropy change for polymerization of DNA and see what that gets you. Perhaps you can explain how drug resistance evolves and why cancer treatments fail. I doubt it.
Thank you for admitting that you can't do the entropy calculations.
Your terminology is as bad as your math and physics. Fixation occurs when an allele is 100% in frequency in the popultation.
Moving towards fixation is just increasing in frequency.
You claim that multiple alleles can not move towards fixation at the same time, even though they are observed to do so in sexual populations. All you can do is shift the conversations to definitions of fixation.
Do I need to go over the addition rule again with you.
You mean the one that allows any number of beneficial alleles to be any frequency whatsoever?

This message is a reply to:
 Message 2548 by Kleinman, posted 12-13-2022 1:01 PM Kleinman has replied

Replies to this message:
 Message 2554 by Kleinman, posted 12-13-2022 3:21 PM Taq has not replied

  
dwise1
Member
Posts: 5949
Joined: 05-02-2006
Member Rating: 5.3


Message 2552 of 2932 (903585)
12-13-2022 1:29 PM
Reply to: Message 2550 by Kleinman
12-13-2022 1:06 PM


Really, you know where the multiplication rule applies?
And more importantly, we also know where it does not apply. Something that you have never been able to figure out; eg, your Message 2466:
Kleinman writes:
Every once in a while, someone wins two lotteries of the tens of millions of people that play lotteries and you think that everyone wins two lotteries. You really need to learn how to do the mathematics of biological evolution.
First, what you wrote has nothing to do with the mathematics of biological evolution. We all know that, but you don't. Furthermore, despite our attempts to correct you, you obstinately refuse to ever learn. That is a classic definition of stupidity, in this case willful stupidity.
Second, if you are claiming that we conclude that "everyone wins two lotteries", then you are a damned liar. Or a completely delusional idiot. Which is it?
Third, you just blindly apply the multiplication rule even when it doesn't apply. If you were to develop a math model for evolution, then you could avoid making such a gross mistake. But you refuse to use a math model, so you keep arriving at stupid nonsense.
I've been sharing a quote from Marcus Lycus with your circle-jerk buddy, Sledge, but it applies to you too:
quote:
But you'll never learn, you'll be a eunuch all your life.
Or to steal a line from the Muse, Serendipity:
quote:
[We have taken the time to study and to learn what evolution is and how it works, whereas you could never be bothered.] That is why we know what we are talking about and you're nothing but a schmuck.

This message is a reply to:
 Message 2550 by Kleinman, posted 12-13-2022 1:06 PM Kleinman has replied

Replies to this message:
 Message 2555 by Kleinman, posted 12-13-2022 3:22 PM dwise1 has replied

  
Taq
Member
Posts: 10073
Joined: 03-06-2009
Member Rating: 5.2


(1)
Message 2553 of 2932 (903586)
12-13-2022 1:42 PM
Reply to: Message 2550 by Kleinman
12-13-2022 1:06 PM


Kleinman writes:
Really, you know where the multiplication rule applies?
It doesn't apply to multiple beneficial alleles in unlinked genes within sexual populations. That's what you have failed to understand from the very beginning.
Here is a section from one of my previous posts.
By your own admission, the addition rule is:
fA + (fB-(fA*fB)) + fC = Tp
Where
fA = frequency of variant A
fB = frequency of variant B
fC = frequency of no A or B = ((1-fA)*(1-fB))
Tp = Total population, should be equal to 1
I contend that your made up version of the addition rule, invented to try and explain away your misapplication to variants at different loci, allows A and B to be whatever number I want. In fact, I can have them increasing in frequency in lock stop together, from a frequency of 0.01 on up to a frequency of 1 for each. Your new made up addition (i.e. subtraction) rule allows the very thing you claimed couldn't happen.
If I am right then I should be able to increase both A and B and still have the equation equal 1. I will be using the assumption of equal distribution for each variant. I will be using a crude population curve that starts with frequencies of 0.01 to 0.05 in increments of 0.01, and then to speed things up I will change the frequency by 0.05 to 1 by increments of 0.05.
I will be using n to represent census numbers and fX to represent the frequencies of each variant.
A = n * fA
B = n * fB
AandB = n * (fA * fB)
C = (1-fA) * (1-fB)
So for the whole equation:
(fA) + (fB - (fA*fB)) + ((1-fA)*(1-fB)) = Tp
I will use a population of 100,000
The code looks like this (adding window scroll to reduce size):
n = 100000

for i in range(1, 6):
    f = i*0.01
    fA = f
    fB = f
    A = int(n * f)
    B = int(n * f)
    AandBn = int(n * (fA * fB))
    C = int(n*((1-fA)*(1-fB)))
    Tp = (fA) + (fB - (fA*fB)) + ((1-fA)*(1-fB))
    print(f'{f} = frequency of A and frequency of B')
    print(f'{A} = number of offspring with A or B')
    print(f'{AandBn} = number of offspring with AB')
    print(f'{C} = number of offspring with neither A nor B')
    print(f'{Tp} = normalized total population')
    print('\n')

for i in range(1, 21):
    f= round(i*0.05, 2)
    fA = f
    fB = f
    A = int(n * f)
    B = int(n * f)
    AandBn = int(n * (fA * fB))
    C = int(n*((1-fA)*(1-fB)))
    Tp = (fA) + (fB - (fA*fB)) + ((1-fA)*(1-fB))
    print(f'{f} = frequency of A and frequency of B')
    print(f'{A} = number of offspring with A or B')
    print(f'{AandBn} = number of offspring with AB')
    print(f'{C} = number of offspring with neither A nor B')
    print(f'{Tp} = normalized total population')
    print('\n')
If you run it on an online python interpreter you will see that the normalized population size (Tp) remains at 1.0 throughout (0.9 repeating is a python glitch). You can also see that the number of AB individuals increases through time.
My results:
0.01 = frequency of A and frequency of B
1000 = number of offspring with A or B
10 = number of offspring with AB
98010 = number of offspring with neither A nor B
1.0 = normalized total population

0.02 = frequency of A and frequency of B
2000 = number of offspring with A or B
40 = number of offspring with AB
96039 = number of offspring with neither A nor B
0.9999999999999999 = normalized total population

0.03 = frequency of A and frequency of B
3000 = number of offspring with A or B
90 = number of offspring with AB
94090 = number of offspring with neither A nor B
1.0 = normalized total population

0.04 = frequency of A and frequency of B
4000 = number of offspring with A or B
160 = number of offspring with AB
92160 = number of offspring with neither A nor B
1.0 = normalized total population

0.05 = frequency of A and frequency of B
5000 = number of offspring with A or B
250 = number of offspring with AB
90250 = number of offspring with neither A nor B
1.0 = normalized total population

0.05 = frequency of A and frequency of B
5000 = number of offspring with A or B
250 = number of offspring with AB
90250 = number of offspring with neither A nor B
1.0 = normalized total population

0.1 = frequency of A and frequency of B
10000 = number of offspring with A or B
1000 = number of offspring with AB
81000 = number of offspring with neither A nor B
1.0 = normalized total population

0.15 = frequency of A and frequency of B
15000 = number of offspring with A or B
2250 = number of offspring with AB
72249 = number of offspring with neither A nor B
0.9999999999999999 = normalized total population

0.2 = frequency of A and frequency of B
20000 = number of offspring with A or B
4000 = number of offspring with AB
64000 = number of offspring with neither A nor B
1.0 = normalized total population

0.25 = frequency of A and frequency of B
25000 = number of offspring with A or B
6250 = number of offspring with AB
56250 = number of offspring with neither A nor B
1.0 = normalized total population

0.3 = frequency of A and frequency of B
30000 = number of offspring with A or B
9000 = number of offspring with AB
48999 = number of offspring with neither A nor B
1.0 = normalized total population

0.35 = frequency of A and frequency of B
35000 = number of offspring with A or B
12249 = number of offspring with AB
42250 = number of offspring with neither A nor B
1.0 = normalized total population

0.4 = frequency of A and frequency of B
40000 = number of offspring with A or B
16000 = number of offspring with AB
36000 = number of offspring with neither A nor B
1.0 = normalized total population

0.45 = frequency of A and frequency of B
45000 = number of offspring with A or B
20250 = number of offspring with AB
30250 = number of offspring with neither A nor B
1.0 = normalized total population

0.5 = frequency of A and frequency of B
50000 = number of offspring with A or B
25000 = number of offspring with AB
25000 = number of offspring with neither A nor B
1.0 = normalized total population

0.55 = frequency of A and frequency of B
55000 = number of offspring with A or B
30250 = number of offspring with AB
20249 = number of offspring with neither A nor B
1.0 = normalized total population

0.6 = frequency of A and frequency of B
60000 = number of offspring with A or B
36000 = number of offspring with AB
16000 = number of offspring with neither A nor B
1.0 = normalized total population

0.65 = frequency of A and frequency of B
65000 = number of offspring with A or B
42250 = number of offspring with AB
12249 = number of offspring with neither A nor B
0.9999999999999999 = normalized total population

0.7 = frequency of A and frequency of B
70000 = number of offspring with A or B
48999 = number of offspring with AB
9000 = number of offspring with neither A nor B
1.0 = normalized total population

0.75 = frequency of A and frequency of B
75000 = number of offspring with A or B
56250 = number of offspring with AB
6250 = number of offspring with neither A nor B
1.0 = normalized total population

0.8 = frequency of A and frequency of B
80000 = number of offspring with A or B
64000 = number of offspring with AB
3999 = number of offspring with neither A nor B
1.0 = normalized total population

0.85 = frequency of A and frequency of B
85000 = number of offspring with A or B
72249 = number of offspring with AB
2250 = number of offspring with neither A nor B
1.0 = normalized total population

0.9 = frequency of A and frequency of B
90000 = number of offspring with A or B
81000 = number of offspring with AB
999 = number of offspring with neither A nor B
1.0 = normalized total population

0.95 = frequency of A and frequency of B
95000 = number of offspring with A or B
90250 = number of offspring with AB
250 = number of offspring with neither A nor B
1.0 = normalized total population

1.0 = frequency of A and frequency of B
100000 = number of offspring with A or B
100000 = number of offspring with AB
0 = number of offspring with neither A nor B
1.0 = normalized total population

This message is a reply to:
 Message 2550 by Kleinman, posted 12-13-2022 1:06 PM Kleinman has replied

Replies to this message:
 Message 2556 by Kleinman, posted 12-13-2022 3:23 PM Taq has replied

  
Kleinman
Member (Idle past 361 days)
Posts: 2142
From: United States
Joined: 10-06-2016


Message 2554 of 2932 (903591)
12-13-2022 3:21 PM
Reply to: Message 2551 by Taq
12-13-2022 1:19 PM


Kleinman:
You can have multiple evolutionary trajectories occurring in single evolutionary process. But the evolutionary process in one evolutionary trajectory has no mathematical effect on the other trajectories except biological competition.
Taq:
You are still getting the basic maths wrong. You are claiming that the chances of getting an adaptive phenotype is the mutation rate. That is wrong because there can be multiple mutations that are adaptive. It isn't that hard to figure out.

If there are 10 possible mutations that confer antibiotic resistance then the rate of adaptive mutations would be 10*mutation rate.

So, Taq, the expert in probability theory, thinks that if there are 10 possible adaptive mutation then the adaptive mutation rate is 10*mutation rate? You aren't thinking this through. Let's say there are 10 possible evolutionary trajectories that confer antibiotic resistance. You start with a population that is antibiotic sensative and mutations are occurring as the population is growing and there are 10 possible mutations for the first adaptive step. That variant doesn't have 10 possible mutations for the second adaptive step. It needs a specific mutation for the next step on its evolutionary trajectory to drug resistance. Likewise, if another variant gets a different adaptive mutation for its first step on its evolutionary trajectory, there won't be 10 adaptive mutations for the second step. This applies to all variants on the different evolutionary trajectories. Once a variant starts on a particular evolutionary trajectory, it must get specific mutations to improved fitness. This was shown by Weinreich in his paper:
Darwinian Evolution Can Follow Only Very Few Mutational Paths to Fitter Proteins
Kleinman:
Sexual reproduction doesn't eliminate competition, Desai's experiment demonstrates this by increasing the frequencies of a few beneficial alleles while eliminating some of the less fit alleles.
Taq:
"Desai let his sexual replicators carry out 90 generations of amplification of the beneficial alleles but stopped the competition process at that point by inducing sexual reproduction before fixation occurred."--Kleinman

You claimed that sexual reproduction stops competition.

It did stop that competition dumb dodo. If it had continued, a single most fit allele would have been fixed whether the population replicated sexually or asexually. Only if the sexual replicators had a successful recombination event (or an adaptive mutation had occurred) would that competition be ended and a new competition started with a new more fit variant in the population.
Kleinman:
Don't let me stop you, survey of physics expert. Go ahead, compute the entropy change for polymerization of DNA and see what that gets you. Perhaps you can explain how drug resistance evolves and why cancer treatments fail. I doubt it.
Taq:
Thank you for admitting that you can't do the entropy calculations.

I haven't even tried because I know it is not necessary to do the mathematics of biological evolution. But in your confused state, you think it is necessary to compute that number. Good luck.
Kleinman:
Your terminology is as bad as your math and physics. Fixation occurs when an allele is 100% in frequency in the popultation.
Taq:
Moving towards fixation is just increasing in frequency.

You claim that multiple alleles can not move towards fixation at the same time, even though they are observed to do so in sexual populations. All you can do is shift the conversations to definitions of fixation.

You must like being stupid, you do it so often. Only one allele can reach fixation. That's why Desai forces sexual reproduction after 90 generations.
Kleinman:
Do I need to go over the addition rule again with you.
Taq:
You mean the one that allows any number of beneficial alleles to be any frequency whatsoever?

You do the mathematics like a poorly trained undergraduate.

This message is a reply to:
 Message 2551 by Taq, posted 12-13-2022 1:19 PM Taq has not replied

  
Kleinman
Member (Idle past 361 days)
Posts: 2142
From: United States
Joined: 10-06-2016


Message 2555 of 2932 (903592)
12-13-2022 3:22 PM
Reply to: Message 2552 by dwise1
12-13-2022 1:29 PM


Kleinman:
Really, you know where the multiplication rule applies?
dwise1:
And more importantly, we also know where it does not apply. Something that you have never been able to figure out; eg, your Message 2466:

Yeah, right. You know where to apply the multiplication rule. That's why you can't explain the evolution of drug resistance and why cancer treatments fail. But I'll give the expert in C-- a chance to show where the multiplication rule applies in the use of 3 drug therapy in the treatment of HIV. We won't hold our breath for that explanation.

This message is a reply to:
 Message 2552 by dwise1, posted 12-13-2022 1:29 PM dwise1 has replied

Replies to this message:
 Message 2558 by dwise1, posted 12-13-2022 4:28 PM Kleinman has replied

  
Kleinman
Member (Idle past 361 days)
Posts: 2142
From: United States
Joined: 10-06-2016


Message 2556 of 2932 (903593)
12-13-2022 3:23 PM
Reply to: Message 2553 by Taq
12-13-2022 1:42 PM


Kleinman:
Really, you know where the multiplication rule applies?
Taq:
It doesn't apply to multiple beneficial alleles in unlinked genes within sexual populations. That's what you have failed to understand from the very beginning.

Taq does a calculation for an imaginary population. Why doesn't he do the mathematics for the tens of millions of successful treatments of HIV with 3 drug therapy? Does the real world make Taqqy Wacky.

This message is a reply to:
 Message 2553 by Taq, posted 12-13-2022 1:42 PM Taq has replied

Replies to this message:
 Message 2557 by Taq, posted 12-13-2022 3:26 PM Kleinman has replied

  
Taq
Member
Posts: 10073
Joined: 03-06-2009
Member Rating: 5.2


Message 2557 of 2932 (903594)
12-13-2022 3:26 PM
Reply to: Message 2556 by Kleinman
12-13-2022 3:23 PM


Kleinman writes:
Taq does a calculation for an imaginary population. Why doesn't he do the mathematics for the tens of millions of successful treatments of HIV with 3 drug therapy? Does the real world make Taqqy Wacky.
Conman.

This message is a reply to:
 Message 2556 by Kleinman, posted 12-13-2022 3:23 PM Kleinman has replied

Replies to this message:
 Message 2559 by Kleinman, posted 12-13-2022 5:45 PM Taq has replied

  
dwise1
Member
Posts: 5949
Joined: 05-02-2006
Member Rating: 5.3


(1)
Message 2558 of 2932 (903595)
12-13-2022 4:28 PM
Reply to: Message 2555 by Kleinman
12-13-2022 3:22 PM


Yeah, same old stupid bullshit posturing. More than 1550 postings of empty trolling garbage that demonstrate nothing except for what an idiot you are.
And you wonder why everybody laughs at you? Why nobody can take seriously anything you vomit forth? Well, that's mainly because we can all see through your stupid bullshit.
And then you just keep pouring out more and more of the exact same stupid garbage. More than 1550 repetitions of the exact same stupid bullshit! More than 1550 instances of a complete waste of bandwidth and server resources!
You stupid troll.

This message is a reply to:
 Message 2555 by Kleinman, posted 12-13-2022 3:22 PM Kleinman has replied

Replies to this message:
 Message 2560 by Kleinman, posted 12-13-2022 5:46 PM dwise1 has not replied

  
Kleinman
Member (Idle past 361 days)
Posts: 2142
From: United States
Joined: 10-06-2016


Message 2559 of 2932 (903596)
12-13-2022 5:45 PM
Reply to: Message 2557 by Taq
12-13-2022 3:26 PM


Kleinman:
Taq does a calculation for an imaginary population. Why doesn't he do the mathematics for the tens of millions of successful treatments of HIV with 3 drug therapy? Does the real world make Taqqy Wacky.
Taq:
Conman.

What's the matter, in 26 years of research you never tried to model a real example? That explains why you don't understand how biological evolution works. That's why you think there are numerous adaptive mutations when there aren't and that adaptive recombination happens all the time when it doesn't. You are a very sloppy researcher that doesn't understand how stochastic systems behave.

This message is a reply to:
 Message 2557 by Taq, posted 12-13-2022 3:26 PM Taq has replied

Replies to this message:
 Message 2565 by Taq, posted 12-14-2022 10:36 AM Kleinman has replied

  
Kleinman
Member (Idle past 361 days)
Posts: 2142
From: United States
Joined: 10-06-2016


Message 2560 of 2932 (903597)
12-13-2022 5:46 PM
Reply to: Message 2558 by dwise1
12-13-2022 4:28 PM


dwise1:
Yeah, same old stupid bullshit posturing. More than 1550 postings of empty trolling garbage that demonstrate nothing except for what an idiot you are.
What's the matter? Are you having trouble explaining when the multiplication rule applies? I'll give the slow-thinking computer programmer a hint. You apply the multiplication rule every time you compute a joint probability such as two adaptive mutations occurring. It is just like winning two lotteries, you multiply the probability of each happening. You aren't very good at this.

This message is a reply to:
 Message 2558 by dwise1, posted 12-13-2022 4:28 PM dwise1 has not replied

Replies to this message:
 Message 2561 by AZPaul3, posted 12-13-2022 6:21 PM Kleinman has replied

  
AZPaul3
Member
Posts: 8551
From: Phoenix
Joined: 11-06-2006
Member Rating: 4.9


Message 2561 of 2932 (903598)
12-13-2022 6:21 PM
Reply to: Message 2560 by Kleinman
12-13-2022 5:46 PM


Fraud.

Stop Tzar Vladimir the Condemned!

This message is a reply to:
 Message 2560 by Kleinman, posted 12-13-2022 5:46 PM Kleinman has replied

Replies to this message:
 Message 2562 by Kleinman, posted 12-13-2022 6:37 PM AZPaul3 has not replied

  
Kleinman
Member (Idle past 361 days)
Posts: 2142
From: United States
Joined: 10-06-2016


Message 2562 of 2932 (903599)
12-13-2022 6:37 PM
Reply to: Message 2561 by AZPaul3
12-13-2022 6:21 PM


AZPaul3:
Fraud.
He's having a hard time because his bubble has burst.

This message is a reply to:
 Message 2561 by AZPaul3, posted 12-13-2022 6:21 PM AZPaul3 has not replied

Replies to this message:
 Message 2563 by Phat, posted 12-14-2022 8:28 AM Kleinman has replied

  
Phat
Member
Posts: 18335
From: Denver,Colorado USA
Joined: 12-30-2003
Member Rating: 1.0


Message 2563 of 2932 (903601)
12-14-2022 8:28 AM
Reply to: Message 2562 by Kleinman
12-13-2022 6:37 PM


As Long As The Circus Is In Town
I've got one that you might like, Kleinman. Personally I think the guy is full of it, but his presentation goes to great lengths to support the theory of a young earth
Real science, history, geology, population growth, archeology, and common sense prove Earth is only a few thousand years old, NOT billions of years old.

This message is a reply to:
 Message 2562 by Kleinman, posted 12-13-2022 6:37 PM Kleinman has replied

Replies to this message:
 Message 2564 by Kleinman, posted 12-14-2022 9:09 AM Phat has not replied
 Message 2573 by dwise1, posted 12-14-2022 3:04 PM Phat has not replied

  
Kleinman
Member (Idle past 361 days)
Posts: 2142
From: United States
Joined: 10-06-2016


Message 2564 of 2932 (903613)
12-14-2022 9:09 AM
Reply to: Message 2563 by Phat
12-14-2022 8:28 AM


Re: As Long As The Circus Is In Town
Phat:
I've got one that you might like, Kleinman. Personally I think the guy is full of it, but his presentation goes to great lengths to support the theory of a young earth

Real science, history, geology, population growth, archeology, and common sense prove Earth is only a few thousand years old, NOT billions of years old.
I watched a couple of minutes of your link. I've never done research on the age of the earth, the problems I have had to deal with are drug resistant infections, so that is what I've studied. The only comment I tend to make on the age of the earth is the presence of soft tissue on fossils and that the half-life of these biomolecules doesn't match with the claimed age that biologists give. I would prefer to talk about how biological evolution actually works. For example, Taq reports that drug resistance of a bacteria can occur by different sets of mutations. He is correct on this point but he either refuses to do the math or doesn't know how to do the math. In addition, Taq appears to think that if there are multiple possible first adaptive mutations, then there must be multiple possible second and additional mutations. This would mean that there are many, many additional evolutionary trajectories to drug resistance but that is not what is measured. When the first adaptive mutation occurs, the remaining additional mutations are specified. This is what Weinreich measured. So, how does this phenomenon of multiple evolutionary trajectories work? How does this change the probabilities for the first adaptive mutation?
Since Taq won't do the math, I will have to. How does the probability change when there are multiple possible adaptive mutations at different sites to a given selection pressure? The probability of an adaptive mutation occurring at least once at a single site is given by:
P(X)=1-(1-μ)^N
where μ is the beneficial mutation rate and N is the total number of replications of that site.
If there is more than one possible site in the genome where an adaptive mutation can occur, what is the probability that an adaptive mutation will occur at least once at any of these sites? The following equation gives the "at least one" calculation for the probability of an adaptive mutation occuring at any of multiple possible sites.
P(XS)=1-(1-P(X))^S = 1-(1-(1-(1-μ)^N))^S
where S is the number of possible sites and P(XS) is the probability that "at least one" adaptive mutation will occur at any one of these sites.
Others can talk about the age of the earth. I prefer to talk about the physics and mathematics of biological evolution and how biologists got this science so wrong.

This message is a reply to:
 Message 2563 by Phat, posted 12-14-2022 8:28 AM Phat has not replied

  
Taq
Member
Posts: 10073
Joined: 03-06-2009
Member Rating: 5.2


(2)
Message 2565 of 2932 (903614)
12-14-2022 10:36 AM
Reply to: Message 2559 by Kleinman
12-13-2022 5:45 PM


Kleinman writes:
What's the matter, in 26 years of research you never tried to model a real example?
What's the matter, can't address the math I presented?

This message is a reply to:
 Message 2559 by Kleinman, posted 12-13-2022 5:45 PM Kleinman has replied

Replies to this message:
 Message 2566 by Kleinman, posted 12-14-2022 11:20 AM Taq has replied

  
Newer Topic | Older Topic
Jump to:


Copyright 2001-2023 by EvC Forum, All Rights Reserved

™ Version 4.2
Innovative software from Qwixotic © 2024