Register | Sign In


Understanding through Discussion


EvC Forum active members: 49 (9215 total)
4 online now:
Newest Member: Cifa.ac
Post Volume: Total: 920,174 Year: 496/6,935 Month: 496/275 Week: 13/200 Day: 7/6 Hour: 0/1


Thread  Details

Email This Thread
Newer Topic | Older Topic
  
Author Topic:   Who Owns the Standard Definition of Evolution
Percy
Member
Posts: 23073
From: New Hampshire
Joined: 12-23-2000
Member Rating: 6.4


(2)
Message 346 of 703 (915299)
02-12-2024 2:48 PM
Reply to: Message 340 by Tanypteryx
02-12-2024 12:18 PM


Tanypteryx in Message 340 writes:
He talks funny too...lifeforms, when everyone else including all the biologists I have known and worked with all use "species" and "populations" as the base taxonomic level.
Although it didn't fool many people, when he began he was trying to appear like someone making an innocent inquiry about evolution, so he avoided the word "kind" and somehow fixed upon the term "lifeform." It's not wrong, I guess, but I agree that it's weird.
These guys are really hard to communicate with. This is a strange pathology when you examine it, they demand that we share our knowledge with them, when we do they ignore it and demand we share what we know with them again...
But it's a familiar schtick, right? It doesn't matter what we say, they just keep circling back.
Next we are going to have to explain over and over that "macroevolution is not some separate process" in addition to descent with modification and natural selection.
Oh, I didn't pick up on that. I think you're right, that he thinks macroevolution is some additional process that evolutionary biologists claim happened even though they have no evidence of it and have no idea how it could have happened. Have we said that macroevolution is just a lot of microevolution yet?
When speciation occurs the resulting offspring species are not "wholly different life forms", instead they are almost identical, with only a few differences that become barriers to reproduction. Once interbreeding between the populations dwindles or ceases altogether, mutations accumulate in each separate population leading to increasing morphological differences. Nowhere in the speciation process does some mysterious, undefined, macroevolutionary process occur, instead it is just the continuing descent with modification and natural selection.
Yep! Well put.
K. Rose seems to be completely unaware of just how much scrutiny scientists give to every aspect of this process of biological evolution. They record and report their observations primarily because of inborn curiosity, but also in the hopes of making a great discovery that stands out among the millions of more mundane observations. The probability that a major unknown process, "macroevolution," would remain undetected, given the level of scrutiny over the past 150+ years, is incredibly low.
He seems to think that scientists are egotists who like making pronouncements about things they know nothing about.
--Percy

This message is a reply to:
 Message 340 by Tanypteryx, posted 02-12-2024 12:18 PM Tanypteryx has seen this message but not replied

  
Taq
Member
Posts: 10348
Joined: 03-06-2009
Member Rating: 6.3


Message 347 of 703 (915320)
02-12-2024 7:22 PM
Reply to: Message 199 by sensei
02-10-2024 4:03 AM


Let's start here:
sensei writes:
If I have a model where every coin toss is 50-50 random, and I find 10 successive coin tosses to be tails, those odds would be less than 0.1%.

That does not mean that my model has of 50-50 random, has less than 0.1% chance to be true.
What we are ultimately asking is how confident can we be that your coin is fair given this one trial.
We would first ask how probable it would be for a fair coin to produce 10 tails in 10 tosses. One mistake I made earlier to is ignore the other tail on the probability graph, so in this instance we have to ask how probable it is to get this extreme result. This would necessarily include 10 heads or 10 tails. The probability of getting 10 heads or 10 tails in 10 tosses is 2 in 1024, or 0.001953125. Therefore, we can say that your coin is unfair with a p value of 0.001953125.
We could even ask what results we would need to see for a fair coin flip with 95% confidence (i.e. p<0.05). We would only need to calculate 2.5% on either side of the probability distribution since we know the distribution should be normal.
where:
n=number of trials
r = number of tails
p=probability of a fair flip
Since the first part is the formula for combinations (nCr) I broke it down like this in Python for calculating all results based on number of tails:
[note: python interpreter for those who want to run the code, just paste in all code blocks to Online Python Compiler (Interpreter) ]
import math

def coin_combo(n, r):
    ncr = math.factorial(n)/(math.factorial(r)*(math.factorial(n-r)))
    return(ncr)

num_trials = 10
tot_combos = 0
for i in range(0, num_trials+1):
    combos = coin_combo(num_trials, i)
    tot_combos = tot_combos + combos
    print(f"{i} tails in {num_trials} trials has {combos} combinations")

print(f'\nThere are {tot_combos} total combinations')
print(f'5% confidence interval begins at {0.025*tot_combos}')
output:
0 tails in 10 trials has 1.0 combinations
1 tails in 10 trials has 10.0 combinations
2 tails in 10 trials has 45.0 combinations
3 tails in 10 trials has 120.0 combinations
4 tails in 10 trials has 210.0 combinations
5 tails in 10 trials has 252.0 combinations
6 tails in 10 trials has 210.0 combinations
7 tails in 10 trials has 120.0 combinations
8 tails in 10 trials has 45.0 combinations
9 tails in 10 trials has 10.0 combinations
10 tails in 10 trials has 1.0 combinations

There are 1024.0 total combinations
5% confidence interval begins at 25.6
Our 5% cutoff begins at 25.6 combinations at either end of the probability distribution. We would have to sum the probabilities for each result, so for 0 tails we have 1, 1 tail we have 10, and for 2 tails we have 45. 56 is over the 25.6 combinations and 11 is below it. Therefore, our cutoff is 1 tail or 9 tails. If you have a result with 3 to 8 tails then we have 95% confidence that your coin is fair, but with 0, 1, 9, or 10 tails we can say that your coin flip is unfair with p<0.05. This is also backed up by the Central Limit Theory at 2 sigmas which is close to 95% confidence:
std^2 = np(1-p)
where:
std=1 standard deviation
n=number of trials
p=probability of a fair toss (i.e. 0.5)
Also, see here:
Is my coin fair ?. Notes on statistical hypothesis… | by Paros Kwan | Medium
In python:
num_trials = 10
p= 0.5
sigma = math.sqrt(num_trials*0.5*(1-0.5))

print(num_trials*p-sigma*2)
print(num_trials*p+sigma*2)
output
1.8377223398316205
8.16227766016838
Again, what we got before. So it checks out from two different statistical tests. BTW:
"Assuming the null hypothesis to be true, if the experimental result lies within the most extreme 5% of the distribution, in statistic, we would reject the null hypothesis and the alternative is in favour ,as it is very unlikely that we can just do a random experiment, and hit such an extreme result. The threshold 5%, is called the significant level (α), and it is a generate practices to set it to 5% or 1%. The probability(p) of an experimental outcome, given that null hypothesis hold, is called the p-value, if p < α, we would reject null hypothesis."
Is my coin fair ?. Notes on statistical hypothesis… | by Paros Kwan | Medium
That's exactly what I said before. You claim this is wrong, but it is found throughout all of the equations and websites describing these statistical tests.

This message is a reply to:
 Message 199 by sensei, posted 02-10-2024 4:03 AM sensei has replied

Replies to this message:
 Message 351 by sensei, posted 02-12-2024 7:44 PM Taq has replied

  
sensei
Member (Idle past 246 days)
Posts: 482
Joined: 01-24-2023


Message 348 of 703 (915321)
02-12-2024 7:32 PM
Reply to: Message 332 by PaulK
02-12-2024 6:17 AM


PaulK:
In Message 153 Taq’s actual claim is:
Taq:
The often used p value in science refers to the chances that a random set of data will produce a false positive.

You really are a lying and deceitful bastard, aren't you?
Here is my comment and Taq's reply without you censoring:
sensei:
You clearly don't understand the difference between the odds of an observation and the odds or level of doubt for a theory being true or not.
Taq:
Those are one in the same. The often used p value in science refers to the chances that a random set of data will produce a false positive.
He did claim they are the same. So move on now as I have no business in lying evotards.

This message is a reply to:
 Message 332 by PaulK, posted 02-12-2024 6:17 AM PaulK has replied

Replies to this message:
 Message 350 by Taq, posted 02-12-2024 7:40 PM sensei has replied
 Message 382 by PaulK, posted 02-13-2024 12:34 AM sensei has not replied

  
Taq
Member
Posts: 10348
Joined: 03-06-2009
Member Rating: 6.3


(3)
Message 349 of 703 (915322)
02-12-2024 7:38 PM
Reply to: Message 200 by K.Rose
02-10-2024 5:24 AM


K.Rose writes:
The Macroevolution link you provided, unintelligible to most laymen, discusses common materials found across lifeforms, which is as much or more of an argument for a Creator.
If that is what you got from it then you failed to understand even the basics of the evidence. It doesn't discuss common materials. It discusses a nested hierarchy:
quote:
Mere similarity between organisms is not enough to support macroevolution; the nested classification pattern produced by a branching evolutionary process, such as common descent, is much more specific than simple similarity. Real world examples that cannot be objectively classified in nested hierarchies are the elementary particles (which are described by quantum chromodynamics), the elements (whose organization is described by quantum mechanics and illustrated by the periodic table), the planets in our Solar System, books in a library, or specially designed objects like buildings, furniture, cars, etc.
29+ Evidences for Macroevolution: Part 1
You have yet to demonstrate why a Creator would necessarily produce such a pattern of both similarities and differences. Just blurting out "is as much or more of an argument for a Creator" just doesn't cut it. You need to explain WHY a nested hierarchy is a necessary outcome from separately created kinds.
Besides, at issue is the key dynamic of evolution, the linchpin, the one that is foisted ubiquitously on the public, which asserts that one higher lifeform (mammal, reptile) can eventually procreate to a completely different higher life form
They aren't completely different. Both reptiles and mammals are amniotes. They are the same kind of lifeform. Humans are amniotes. Reptiles are amniotes. Our common ancestor was an amniote. It is amniotes evolving into different species of amniotes.
Again, you are ignoring the nested hierarchy.
Where is the evidence and certainty for that presented, beyond the explanation "Life Form A shares traits with Life Form B and somewhere in-between is where the evolution happened"?
That isn't the explanation. The evidence is the nested hierarchy which is a pattern of shared features.

This message is a reply to:
 Message 200 by K.Rose, posted 02-10-2024 5:24 AM K.Rose has replied

Replies to this message:
 Message 367 by K.Rose, posted 02-12-2024 8:07 PM Taq has replied

  
Taq
Member
Posts: 10348
Joined: 03-06-2009
Member Rating: 6.3


Message 350 of 703 (915323)
02-12-2024 7:40 PM
Reply to: Message 348 by sensei
02-12-2024 7:32 PM


sensei writes:
You really are a lying and deceitful bastard, aren't you?
Nope. The website below says the very same thing:
quote:
Assuming the null hypothesis to be true, if the experimental result lies within the most extreme 5% of the distribution, in statistic, we would reject the null hypothesis and the alternative is in favour ,as it is very unlikely that we can just do a random experiment, and hit such an extreme result. The threshold 5%, is called the significant level (α), and it is a generate practices to set it to 5% or 1%. The probability(p) of an experimental outcome, given that null hypothesis hold, is called the p-value, if p < α, we would reject null hypothesis.
Is my coin fair ?. Notes on statistical hypothesis… | by Paros Kwan | Medium
p values work exactly as I described.

This message is a reply to:
 Message 348 by sensei, posted 02-12-2024 7:32 PM sensei has replied

Replies to this message:
 Message 354 by sensei, posted 02-12-2024 7:49 PM Taq has replied

  
sensei
Member (Idle past 246 days)
Posts: 482
Joined: 01-24-2023


Message 351 of 703 (915325)
02-12-2024 7:44 PM
Reply to: Message 347 by Taq
02-12-2024 7:22 PM


Taq:
That's exactly what I said before. You claim this is wrong, but it is found throughout all of the equations and websites describing these statistical tests.
Here is what I wrote to Percy, in case you missed it:
sensei:
Taq claims that it is the same as the p-value, which is simply not true. The p-value of 1/1024 gives the probability of observing ten times tails, given that we have a fair coin. If you know any Baysian statistics, you should know that this is not the same as the probability that we have a fair coin, given what we observed. Prob(A|B) ≠ Prob(B|A). Very rooky mistake by Taq.
I suggest you read this carefully, study it, do excercises on it and then maybe you actually learn, what you should have learned long before you started working in science.
Tangle:
In normal discussions with normal human beings when that kind of statement is made it's normally followed by an explanation of the error being made.
You made the same mistake as Taq so maybe also read the above, I suppose.

This message is a reply to:
 Message 347 by Taq, posted 02-12-2024 7:22 PM Taq has replied

Replies to this message:
 Message 353 by Taq, posted 02-12-2024 7:47 PM sensei has replied

  
Taq
Member
Posts: 10348
Joined: 03-06-2009
Member Rating: 6.3


Message 352 of 703 (915326)
02-12-2024 7:45 PM
Reply to: Message 211 by K.Rose
02-10-2024 8:33 AM


K.Rose writes:
This notion that biological similarity equals some type of ancestral link between all lifeforms - the linchpin of evolutionary theory - has not been proven nor disproven empirically.
That's not the notion. The notion is the observation of an objective nested hierarchy, not simply similarities. The theory of evolution predicts that this pattern should be seen, and it has been empirically verified.

This message is a reply to:
 Message 211 by K.Rose, posted 02-10-2024 8:33 AM K.Rose has not replied

  
Taq
Member
Posts: 10348
Joined: 03-06-2009
Member Rating: 6.3


Message 353 of 703 (915327)
02-12-2024 7:47 PM
Reply to: Message 351 by sensei
02-12-2024 7:44 PM


sensei writes:
I suggest you read this carefully, study it, do excercises on it and then maybe you actually learn, what you should have learned long before you started working in science.
Read it and weep:
quote:
Assuming the null hypothesis to be true, if the experimental result lies within the most extreme 5% of the distribution, in statistic, we would reject the null hypothesis and the alternative is in favour ,as it is very unlikely that we can just do a random experiment, and hit such an extreme result. The threshold 5%, is called the significant level (α), and it is a generate practices to set it to 5% or 1%. The probability(p) of an experimental outcome, given that null hypothesis hold, is called the p-value, if p < α, we would reject null hypothesis.
Is my coin fair ?. Notes on statistical hypothesis… | by Paros Kwan | Medium
That fully backs up all of my descriptions and math. Read the entire webpage. Perhaps you will learn something.

This message is a reply to:
 Message 351 by sensei, posted 02-12-2024 7:44 PM sensei has replied

Replies to this message:
 Message 356 by sensei, posted 02-12-2024 7:51 PM Taq has replied

  
sensei
Member (Idle past 246 days)
Posts: 482
Joined: 01-24-2023


Message 354 of 703 (915328)
02-12-2024 7:49 PM
Reply to: Message 350 by Taq
02-12-2024 7:40 PM


Taq:
Assuming the null hypothesis to be true, ...
From your website, Taq, you miss the key start of the sentence, "assuming the null hypothesis to be true ...",
The p-value relates to the probability of the observation, after assuming the hypothesis. That is not the same as the probability of the null hypothesis being actually true.
When do you finally learn, dummy?

This message is a reply to:
 Message 350 by Taq, posted 02-12-2024 7:40 PM Taq has replied

Replies to this message:
 Message 358 by Taq, posted 02-12-2024 7:55 PM sensei has replied

  
Taq
Member
Posts: 10348
Joined: 03-06-2009
Member Rating: 6.3


Message 355 of 703 (915329)
02-12-2024 7:50 PM
Reply to: Message 217 by K.Rose
02-10-2024 9:51 AM


K.Rose writes:
It appears that there is a danger within Scientific disciplines, that when factuality as determined by empirically demonstrable conclusion cannot be had, an arrogant fervor takes hold and the group simply declares as fact the opinion of the most credentialed within the group.
Here are 29+ empirically demonstrable conclusions:
29+ Evidences for Macroevolution: The Scientific Case for Common Descent
Every section has a prediction, potential falsification, observations, and conclusion.

This message is a reply to:
 Message 217 by K.Rose, posted 02-10-2024 9:51 AM K.Rose has not replied

Replies to this message:
 Message 357 by sensei, posted 02-12-2024 7:54 PM Taq has replied

  
sensei
Member (Idle past 246 days)
Posts: 482
Joined: 01-24-2023


Message 356 of 703 (915330)
02-12-2024 7:51 PM
Reply to: Message 353 by Taq
02-12-2024 7:47 PM


Taq:
That fully backs up all of my descriptions and math.
Okay sure, it has been confirmed yet again that you are a low intellect, incapable of understanding even when it's spelled out for you. Have a nice day.

This message is a reply to:
 Message 353 by Taq, posted 02-12-2024 7:47 PM Taq has replied

Replies to this message:
 Message 361 by Taq, posted 02-12-2024 8:01 PM sensei has not replied

  
sensei
Member (Idle past 246 days)
Posts: 482
Joined: 01-24-2023


Message 357 of 703 (915331)
02-12-2024 7:54 PM
Reply to: Message 355 by Taq
02-12-2024 7:50 PM


Taq:
Here are 29+ empirically demonstrable conclusions:
Taq, you are in no position to make any scientific claims what so ever with your level of understanding.

This message is a reply to:
 Message 355 by Taq, posted 02-12-2024 7:50 PM Taq has replied

Replies to this message:
 Message 359 by Taq, posted 02-12-2024 7:57 PM sensei has not replied

  
Taq
Member
Posts: 10348
Joined: 03-06-2009
Member Rating: 6.3


Message 358 of 703 (915332)
02-12-2024 7:55 PM
Reply to: Message 354 by sensei
02-12-2024 7:49 PM


sensei writes:
The p-value relates to the probability of the observation,
Exactly. It assigns a confidence level to the conclusion just as in the case of the match between independent phylogenies, which was the original topic. I even linked the p value calculator so you could find the p value for yourself. For two rooted independent trees with 30 taxa the p value for the match is p< .0194686103660492e-39.
29+ Evidences for Macroevolution: Statistics of Incongruent Phylogenetic Trees

This message is a reply to:
 Message 354 by sensei, posted 02-12-2024 7:49 PM sensei has replied

Replies to this message:
 Message 360 by sensei, posted 02-12-2024 8:00 PM Taq has replied

  
Taq
Member
Posts: 10348
Joined: 03-06-2009
Member Rating: 6.3


(1)
Message 359 of 703 (915333)
02-12-2024 7:57 PM
Reply to: Message 357 by sensei
02-12-2024 7:54 PM


sensei writes:
Taq, you are in no position to make any scientific claims what so ever with your level of understanding.
Then go to the website and show how those scientific claims are not empirically demonstrable conclusions. If you think you are such a smarty pants, then address the conclusions made at TalkOrigins and show how they aren't scientifically supported.

This message is a reply to:
 Message 357 by sensei, posted 02-12-2024 7:54 PM sensei has not replied

  
sensei
Member (Idle past 246 days)
Posts: 482
Joined: 01-24-2023


Message 360 of 703 (915334)
02-12-2024 8:00 PM
Reply to: Message 358 by Taq
02-12-2024 7:55 PM


Taq:
It assigns a confidence level to the conclusion just as in the case of the match between independent phylogenies, ...
Don't tell me that you also don't know the difference between confidence levels and p-values. You talk as if they are the same. LOL. I'm laughing hard in your face!
They are not the same at all. And if you knew that already, then you should know that your comment makes no sense and is bullshit!
Really, the more you comment, the more you prove yourself to be incapable.

This message is a reply to:
 Message 358 by Taq, posted 02-12-2024 7:55 PM Taq has replied

Replies to this message:
 Message 363 by Taq, posted 02-12-2024 8:04 PM sensei has replied

  
Newer Topic | Older Topic
Jump to:


Copyright 2001-2023 by EvC Forum, All Rights Reserved

™ Version 4.2
Innovative software from Qwixotic © 2025