one that every practicing biologist would agree with
Where are you getting this from? As far as I'm aware biologists, practicing or not, are not particularly concerned with the study of human behavior.
HN user
one that every practicing biologist would agree with
Where are you getting this from? As far as I'm aware biologists, practicing or not, are not particularly concerned with the study of human behavior.
It depends on what you're working on. If you're doing real algorithmic work, often the algorithm is a lot more complex than its spec because it needs to be fast.
Take sorting a list for example. The spec is quite short.
- for all xs: xs is a permutation of sort(xs)
- for all xs: sorted(sort(xs))
Where we can define "xs is a permutation of ys" as "for each x in xs: occurrences(x, xs) = occurrences(x, ys)"
And "sorted(l)" as "forall xs, x, y, ys: (l = xs ++ [x, y] ++ ys) => x < y".
A straightforward bubble or insertion sort would perhaps be considered as simple or simpler than this spec. But the sorting algorithms in, say, standard libraries, tend to be significantly more complex than this spec.
The article does go into cache coherency which is very much intertwined with multicore parallellism:
The cache coherency protocol is one of the hardest parts of a modern CPU to make both fast and correct. Most of the complexity involved comes from supporting a language in which data is expected to be both shared and mutable as a matter of course.
I feel like we live in a world where everyone works very hard to pretend that C is our best low-level language, when in reality an APL-like purely functional array language would be a better candidate.
You are coming to a wrong conclusion due to a misunderstanding of what the separation of powers means. I will first try to illustrate with a thought experiment, after which I believe you will agree that there is something wrong in your reasoning, and then I will demonstrate where your logic went wrong.
---
Thought experiment: Suppose a dear loved one is brutally murdered by a relative of the current democratically elected leader (imagine a hypothetical leader, country, etc). Through various extralegal manipulations, the leader ensures that the murderer is not convicted (evidence disappears, jurors are appointed in a fishy way, the judge turns out to be a family member of the murderer, ...) and you notice that none of the usual paths of recourse work. Perhaps you go to the press, but his supporters just dismiss this as a smear campaign. Crucially, this leader is very popular, their party controls the legislative and has appointed judges for years.
Following the reasoning in your post, which I think can be summarized as "the legislative and judicial branches, which are legitimately elected/appointed, chose not to stop him, therefore the separation of powers is not violated and this is how a democracy is supposed to work", the leader's actions do not constitute a violation of the separation of powers, and this incident does not demonstrate that this country's democracy is unhealthy.
---
I hope you agree that this conclusion is wrong, yet it follows inexorably from the argument you have made (because the sole precondition, that the other branches are legitimately elected/appointed, is satisfied). So we must conclude that there is a mistake in your argument, and I think it originates in the conflation of two of the core features of liberal democracy -- that is (a) leaders are elected and (b) there is a separation of powers. You are essentially saying that (b) holds because (a) holds, but it is important to remember that (a) and (b)are independent features that sometimes oppose each other: it is by design that the system (especially the judiciary) can overrule the majority of the population, at least for some time.
So the question of "are the judiciary and legislative branches effectively enforcing the separation of powers" is not actually related to whether these branches are legitimately appointed/elected, but to whether they are independent. By this I mean that they play their constitutionally prescribed role even if at times this is unpopular. For example, the judiciary's job is to enforce the law. In the thought experiment, they are not independent from the executive, and that is a deep system failure: they should enforce the law (convict the murderer) even if the (popular and legitimate) executive disagrees.
For example, the law is crystal clear wrt who has the authority to enact tariffs on foreign nations. The President cannot legally do this as the Constitution vests the power to raise taxes in Congress; reasonable people cannot disagree about this. Congress has granted him emergency powers on the basis of a fentanyl crisis at the Mexican border; the scope of these emergency powers clearly does not include imposing tariffs on, say, Australia. Again, there is no room for interpretation here, this is all crystal clear. The fact that the tariffs haven't been effectively struck down yet is a clear failure of the separation of powers, because the law is so clear. The popularity of the president or his policy is completely irrelevant to the question of whether he should be stopped by the courts.
The main reason this needs to exist is to make sure that, indeed, the next election is a free and fair election. If the separation of powers does not hold, then there is nothing stopping the executive from manipulating the election and hollowing out democracy. This has happened many times in history, and it is exactly what people (rightfully, I believe) fear about the Trump presidency.
Your statement is wrong in two distinct ways:
- Fundamentalists never hijacked the FSF, they founded it: Stallman is about as fundamentalist as possible about free software.
- In the case of the FSF, the fundamentalists are absolutely walking the walk, both in terms of contributing software, and in terms of going out of their way to not use proprietary software.
most lived at subsistence levels with starvation always at their doorstep
Genuine question: is this something we know from evidence, or an assumption? I vaguely recall having read that comparison between skeletal remains of early farmers and hunter-gatherers indicated that the latter had a better diet, but I'm not sure if I'm remembering correctly or how much that observation generalizes.
I don't think it was a primary motivation, but at least the slowness of mtl is mentioned as one of the motivations for the existence of the library.
https://hackage.haskell.org/package/effectful#what-about-mtl
AFAIK the first somewhat widely-known language to do this was Haskell (through libraries). I'm not 100% clear on the entire history, but I think it goes something like:
1. Initially there was no way to do effects in Haskell, everything was pure.
2. Then it was realized that IO can be modeled with monads, so the IO type and do notation were added.
3. Gradual realization that monads can be used to also constrain effects, ie you can construct a type of "stateful computations" that can read and write to a specific state, but not touch other states or write to disk or something.
4. Monad transformers are invented, which allow stacking monads on top of eachother to support multiple effects. Together with type classes, this gets us pretty close to extensible effects (the approach used in Flix, if I understand it correctly). So for example you can express that your function needs to write to a log and may exit early with an error message with the constraints `(MonadWriter w m, MonadError e m) => ... -> m resultType`, and you can then use monad transformers to build a stack that provides both of these effects.
5. Monad transformers have some issues though: they affect performance significantly and the interaction between effects is tricky to reason about. So an alternative is sought and found in extensible effects. The initial proposals were, iirc, based on free monads, but those aren't great for performance either, so ever since there has been a whole zoo of different effects and handlers implementations that all make different trade-offs and compromises, of which I think the `effectful` library is now the de facto default, and I think what it offers is quite similar to the Flix language's effect system (I'm not sure on what finer points it differs).
That's not providing material support. It's just speech.
Especially the set example is also just confusing for 7th grade kids (or anyone who doesn't already understand sets, really). It's technically correct to say that you can store the unique ingredients of a recipe in a set, but that's not an obviously useful thing to do (if you want to compose a shopping list, you need the quantities as well), so the example doesn't actually illustrate anything that helps make sets more intuitive to the student. I think many, if not most, kids of that age will also not even correctly parse the phrasing "list all the unique ingredients" (not to speak of the unfortunate phrasing "a set can be used to list all ..." while you're trying to illustrate the difference between a list and a set).
I think the primary positive feature of democracy is simply that we have regular peaceful transitions of power. I'm not sure that the fact that the people choose their own leaders by itself leads to higher quality leadership, or even leadership that cares more about said people. But the fact that the baton passes every couple of years is absolutely invaluable.
That would be a crime. Khalil was not charged with any crime. The only conceivable reason to not charge him at this point, is because there is no evidence of him committing a crime.
The government is not prosecuting for speech, which is what the free speech protections can and should guarantee.
This has absolutely started happening, albeit not yet on a large-scale, systematic basis. Mahmoud Khalil [0] resided in the US legally when he was detained with the intention to deport.
It's not undemocratic. The behavior of the parliament reflects the reality that only a tiny minority of the population care at all about this issue.
One might be tempted to blame a lack of media attention, but I don't think that's it. For example in the US, the Snowden revelations attracted tons and tons of media attention, yet it never became a major topic in elections, as far as I'm aware. No politician's career was ended over it, and neither did new politicians rise based on a platform of privacy-awareness. No one talks about mass surveillance today. No one cares. There is no reason to believe that the situation is different in Europe.
I watched this video years ago and found it interesting. It's a talk by Kevin Buzzard, a pure mathematician who got really interested in theorem proving software, and he explains his motivation.
I'll re-order a bit based on perceived importance.
That's a good point. One thing though is that our actions today can't impact people in the past. So from an ethics point of view, we don't need to worry about the past, only the present and future. And as you say, we don't 100% know what happened in the past.
With the partial people view, someone might conclude today a person with a certain genetic disorder is similar to an ape, and thus a partial person, and thus doesn't need rights. By saying "no partial people today", we avoid that problem.
Here it's important to remember exactly what positions we are defending. The viewpoint you have been defending is not merely that we should, for ethical reasons, consider the zygote to be a person. You are defending a much stronger claim, which is that denying that the zygote is a person goes against our current scientific understanding.
To be absolutely clear: I don't think that your belief that the zygote is a person is unscientific or demonstrably wrong (although I believe there are more sensible candidates for boundaries). What's more is that I understand the need for a "legal fiction" around personhood: a legal definition that is deliberately too broad, stemming from a hopefully broadly shared sense that we should try very hard to avoid false negatives.
However, I am very certain that this conviction is not a scientific necessity. It's specifically this part of your claim I am addressing with the "nonhuman ancestors" example. My claim is that science simply does not provide us with a clean boundary between persons and non-persons. Whatever boundary we are going to come up with for legal and moral reasons is going to be somewhat arbitrary, probably based on drawing the boundary a bit too broad.
You claim that your belief that the zygote is a person follows logically from the axiom that personhood is always non-partial. I agree with this as a legal fiction. But from a philosophical or scientific point of view, this is simply disprovable. If you accept that my nonhuman ancestors example disproves your axiom of non-partiality of personhood in the domain of philosphy/science (not in the domain of law), then:
- you can continue to believe that we should consider the zygote as a full person
- but, your argument that it is logically or scientifically necessary to consider the zygote as a person collapses.
2 people being attached permanently for the purpose of blood processing of a failed kidney isn't standard care.
I feel like your entire argument here rests on the idea that the attachment is permanent, making your sacrifice much greater than that of a pregnant woman. If we contrive a reason why, for example, you would only need to be attached for a month or week or so, this argument evaporates. If you need to provide your kidneys for the duration of one week, then your sacrifice is clearly much less than that of a pregnant woman. On what basis can the state then force a pregnant woman to stay pregnant for nine months, but not force you to remain a living dialysis machine for a week?
My definition doesn't hinge on the unfertilized egg and fertilized egg being different entities. An unfertilized egg won't typically grow into an adult human. A fertilized egg will typically grow into an adult human.
Retracing this thread in the conversation, I'm getting confused about what your exact position here is. This is what I said earlier:
Me: But if an unfertilized egg dies due to not being fertilized, I'm sure you would argue that "not being fertilized" doesn't count as a problem; or alternatively, that the fertilized egg is a different entity from the unfertilized egg. But none of this follows naturally from the definition, it requires our notions of "problem" and "entity" to be perfectly aligned to begin with. And you will pick your understanding of "problem" and "entity" based on wanting to prove that the unfertilized egg isn't a human but the starving child is.
So you must either claim that it's a different entity, or that not being fertilized doesn't count as a "problem". The thread continues:
You: I think there's a clear biological difference between an entity receiving nutrition, and 2 entities, each with half of a set of DNA, coming together to make a single entity with a full set of DNA.
Me: The difference is "clear" to you because you are reasoning backwards from a desired conclusion. You want to claim that the zygote is a person and the unfertilized egg is not, so of course the merger of DNA is the "clear" boundary between entities to you.
You: I'm not making up this boundary. This is the scientific definition of an organism.
Because of this quote, I was convinced that out of the "problem" and "entity" objections, you picked the "entity" one; that is, you respond to my challenge that the unfertilized egg can be considered a human being in your definition by stating that it is a different entity from the unfertilized egg, not that "not being fertilized" doesn't count as a problem.
But then in your most recent post you state "My point wasn't that the unfertilized egg and fertilized egg are clearly different entities". Then what was the point you were making by bringing up the definition of an organism?
I'm not making up this boundary. This is the scientific definition of an organism.
To begin with, you did not volunteer a definition for the term "organism"; you limited yourself to attempting defining "human". This was rhetorically a good move, because defining the term "organism" is significantly harder.
You keep repeating that your definition is scientific, but offer no evidence of this. I argue that no such definition exists. The wikipedia page for the term "organism" starts as follows:
An organism is any living thing that functions as an individual. Such a definition raises more problems than it solves, not least because the concept of an individual is also difficult. Several criteria, few of which are widely accepted, have been proposed to define what constitutes an organism.
> if we modify its genes, which you seem to imply makes it a different entity.
I don't think I said that.
>And if we dig a bit deeper, the criterion by which you disqualify the unfertilized egg from being considered human also disqualifies the fertilized egg. It too is an entity which can meld with other entities to form a single entity (chimerism, as we discussed), and it can even do the opposite: identical twins start as one zygote that splits at a later point in its development.
I'm not sure either of those contradict my previous definition. The chimerism can be considered a problem that will happen. Regarding identical twins, we could argue whether "grow into an adult human" covers "grow into 2 adult humans" or not.
You forget that my statement was a reply to something you said after you stated your definition. You argued that an unfertilized egg cannot be considered a person because it is "clearly" a different entity from the fertilized egg. That does not follow from your definition, because you don't define the term "entity" anywhere.
All my counterexamples were further attempts to divine what you mean by "entity" (which is an absolutely load-bearing concept in your definition which, again, you leave undefined). If you object to the unfertilized egg being the same entity as the fertilized egg, my hypotheses about your understanding of "entity" are that either changing the genome means that it becomes a different entity (generating the deadly mutation challenge), or merging two entities makes them a distinct entity from either original (generating the chimerism example).
My reasoning was a bit loose regarding the identical twins and split-brain examples: I implicitly generalized your potential objection to mergers to an objection to changes in cardinality. I personally don't see why one would reject mergers but accept splits, but that's not an inconsistent position.
At the moment I still don't know why you believe the unfertilized egg is necessarily a different entity from the zygote. Your response to the chimerism example provides no clarification on this: I was clearly challenging your notion of entity, but you responded only with that it "can be considered a problem that can happen".
The axiom for me is that there's no such thing as a partial person. From that axiom, the only logical conclusion I can see is that personhood begins at fertilization.
I strongly disagree with this axiom. At some point in the distant past, our ancestors were non-human (and, possibly but not necessarily at the same time, not persons). The logical conclusion from your axiom is that there was, at some point, a hard boundary where an entirely nonperson animal gave birth to a "full person" human (and that first human then presumably had to reproduce through bestiality, unless through some amazing fortune another full 100% human being was born and fertile during their fertile years).
This seems to me a significantly less reasonable reading of reality than describing this as a gradual process towards personhood/humanity, where each successive generation is "more personlike". I find this also a more moral reading of reality: to me clearly an ape or an octopus is more personlike than a cockroach, which is in turn a bit more personlike than a jellyfish, which is a tiny tiny bit more personlike than a sea sponge.
What about child neglect laws? Those restrict the parents' autonomy.
Correct. But it does not restrict their bodily autonomy. I don't think parents can be forced to donate blood or organs to their offspring. Of course most would without a second thought, but not because it is obligated by law.
Generally the state's laws forbid one person from taking actions that would violate the rights of another person [...] I think that is consistent to the state making it not legal for a mother to kill a fetus [...]
There's a contrived "standard thought experiment" that responds to this: suppose A kidnaps B, ties them down, and connects B's bloodstream to an entirely innocent C with kidney failure, so that B's kidneys process C's blood. Disconnecting B from C will result in the death of C (assume there is no way around this). In this case the status quo is that B is keeping C alive, and it requires active intervention to change this situation. Does B now have a moral duty to remain physically connected to C at all times? Does B "kill" C if they disconnect the bloodstreams?
If you believe that it is, your opinion is consistent. If it's not, then you must at least permit abortion in the case of rape, even if the fetus is a person.
I think there's a clear biological difference between an entity receiving nutrition, and 2 entities, each with half of a set of DNA, coming together to make a single entity with a full set of DNA.
The difference is "clear" to you because you are reasoning backwards from a desired conclusion. You want to claim that the zygote is a person and the unfertilized egg is not, so of course the merger of DNA is the "clear" boundary between entities to you.
But this boundary just doesn't work very well. To begin with you ignored the "child with deadly mutation" challenge I presented: the only way the child reaches adulthood is if we modify its genes, which you seem to imply makes it a different entity.
And if we dig a bit deeper, the criterion by which you disqualify the unfertilized egg from being considered human also disqualifies the fertilized egg. It too is an entity which can meld with other entities to form a single entity (chimerism, as we discussed), and it can even do the opposite: identical twins start as one zygote that splits at a later point in its development.
I'm not sure even adult humans would qualify for being human in your worldview, come to think of it. Some people have had their brain halves separated during their lifetime, and this seems to lead to two separate persons locked in one body, at least in some cases (https://en.wikipedia.org/wiki/Split-brain).
At this point, you can start overfitting your definition to draw an absurdly jagged boundary exactly around these counterexamples, but at that point I'd appreciate if you just admit that personhood starting at fertilization is just an axiom for you and everything else follows from it.
What you're saying seems to be that it's ok for the state to mandate citizens protect the state, but not ok for the state to mandate citizens protect the people in the state.
That is very much not what I am saying, but I wasn't very explicit about the point I was making, so I shall clarify.
Two people can disagree about what they think the law should say, but one thing that all decent people would agree on, is that the law should be consistent. We want it to apply evenly to all, without strange exceptions. We don't want any laws that say "everyone is free, except people born in May, they have to do slave labor in the mines."
I was not making an argument about what the law should be, I was arguing that abortion laws make the law inconsistent, as there is no other case where the state violates the bodily autonomy of one person to force them to care for another. For example, if we are in a remote area and I get badly injured, and you are the only person with a compatible blood type nearby, the state can't force you to donate your blood to me.
My point was that it's inconsistent to say that the state can violate one person's bodily autonomy to keep another alive specifically in the case of pregnancy. If you want to make this consistent, you need to allow the state to do this in all cases, implying among other things forced blood transfusions and forced kidney donations. Perhaps you agree that the state should be able to force people to donate blood or a kidney, and in that case your opinion is consistent.
I wasn't expressing agreement or disagreement with the draft. I was stating that it is irrelevant as a counterexample. That's because the justification for the draft rests on a moral principle that's distinct from the one that justifies abortion laws (ie "citizens' bodily autonomy can be violated to defend the state" vs "citizens' bodily autonomy can be violated to save any individual's life"). Again, I deliberately offer no opinion on whether the draft is justified; for my purposes it's enough to show that it is not relevant as a counterexample.
One way to define a human is any living entity that is either an adult human, or will/would grow into an adult human as long as no problem has happened or will happen to the entity.
A few posts back you complained about "tail-wagging-the-dog" thinking, where one reasons backwards from the conclusions one wishes to reach. Your definition is obviously a product of that style of thinking: instead of clarifying what is or isn't a human, you will use the natural elasticity of terms like "problem" and "entity" to draw your boundary however you wish, based on pre-existing notions, when confronted with a challenge.
For example, if a child dies from starvation, therefore not growing into adulthood, you will of course say that the lack of nutrients is a problem that prevented this child from reaching adulthood, so it's still a human.
But if an unfertilized egg dies due to not being fertilized, I'm sure you would argue that "not being fertilized" doesn't count as a problem; or alternatively, that the fertilized egg is a different entity from the unfertilized egg. But none of this follows naturally from the definition, it requires our notions of "problem" and "entity" to be perfectly aligned to begin with. And you will pick your understanding of "problem" and "entity" based on wanting to prove that the unfertilized egg isn't a human but the starving child is.
Or imagine a child that is born with a mutation that prevents it from reaching adulthood. Clearly we both want to consider this child human. But I would argue that no problem ever "happened" to this entity: the mutation is part of what defines the entity, there is no alternative hypothetical future where it could reach adulthood. According to your definition I could not call this child a human.
The draft. And a lot of other military rules.
The draft is an example of the state overruling an individual's bodily autonomy, but I specifically said "[...] where the law prioritizes one's duty to care for another over one's bodily autonomy". The draft is not an example of that: it is a case where the law prioritizes protecting the interests/preservation of the state over another's bodily autonomy, which might in some cases coincide with caring for others, but it clearly doesn't have to.
The captain has a duty to save passengers first before saving self.
Yes, you can enter an agreement with another party where you make a legally binding promise to perform some duty that overrides your bodily autonomy. This is not an example of the law overriding your bodily autonomy, it's an example of how you can use the law to relinquish your own right to bodily autonomy. Getting pregnant does not require such a legally binding promise.
I don't think that's right [...]
I'm irrefutably correct that the bodily autonomy argument does not depend on the fetus being a person or not. It's a sufficiently prominent argument that it has a section on the "abortion debate" page on wikipedia [0]. Perhaps the argument does not convince you, but that was not my point. I only wished to show that you are mistaken about the pro-choice position being dependent on the non-personhood of the fetus.
At present I'm not interested in starting a parallel discussion about the validity of the bodily autonomy argument. I can leave a video link [1] if you're interested in how it responds to the most obvious challenges, but I will not return to it unless, maybe, the personhood thread is resolved (to avoid a branching tree discussion).
[0] https://en.wikipedia.org/wiki/Abortion_debate#Bodily_rights
If we were to survey those biologists, what would they say? Same regarding an infertile person, and cancer. I think scientists have already resolved the questions you're posing.
If a definition exists that avoids all these edge cases, please provide it. I am not aware of a definition of "organism" that would resolve all the problems in your stance.
Most pro choice people won't use it, because it means abortions would have to be very restricted.
The most common pro-choice argument is based on bodily autonomy, for which the personhood of the fetus is irrelevant. It suffices to observe that there is no other situation where the law prioritizes one's duty to care for another over one's bodily autonomy, so even if the fetus is a person, the state cannot force you to carry them to term.
So you are technically correct in stating that it is rarely used as a defense for the pro-choice position, but not "because it means abortions would have to be very restricted". In the bodily autonomy argument, the personhood of the fetus is irrelevant.
I agree with the bodily autonomy argument and the broader pro-choice position, but in this case I'm not really making a political argument, but a philosophical one, which is: it's a mistake to strongly identify personhood with the property of "being an organism" / "being alive".
That does not resolve your problem, it only shuffles it around.
You are defending the case that personhood begins at conception, and your argument supporting this case is "It's a unique living organism. A life. Different from a skin cell which isn't a unique organism."
If I get a kidney from someone else, and that person dies, according to your own argument, that kidney is a person. These cells are metabolizing and dividing, therefore alive, and they are unique with respect to the rest of my body.
Perhaps you'll argue that the kidney isn't an organism because it has no means of reproducing itself. To that I have two counterarguments:
- The argument implies that infertile humans are not persons.
- Nature contains every horror imaginable, including clonally transmissible cancers [0]. If my body develops such a cancer and it jumps to someone else, then I die, according to your definition my cancer that's colonizing someone else's body is a person.
I won't claim to know what defines personhood, but an obvious prerequisite (in the context of human life) is the existence of a centralized nervous system. If I am beheaded, and my headless body is placed on life support while my brain is destroyed, I, as a person, am dead, even if my body is alive. If my brain is surgically removed and placed on life support in a vat, and allowed to interface with the world somehow, then I, as a person, am still alive (whether such a life is worth living is a different question).
Accepting this prerequisite resolves the chimera problem, the kidney problem, the infertility problem and the transmissible cancer, and it results in the conclusion that a zygote is not yet a person, as it does not have a nervous system.
[0] https://en.wikipedia.org/wiki/Devil_facial_tumour_disease
Would you consider a chimera resulting from the fusion of two embryos as two people?
In this context it seems pretty wild to assume that OP was intentionally deceptive instead of just writing from memory and making a mistake.
Learning primarily through listening and talking only works if you have an enormous amount of high quality data, ie, the situation you're in as a baby when you're surrounded by native speakers who are producing speech for hours every day.
If you are an adult and want to spend, say, a couple of hours each week learning a language from scratch, especially without constant access to a native speaker, your initial progress will be much faster if you study grammar and vocabulary in a traditional class from a text book, than if you just try to pick up patterns from listening to the TV or something.
I can't source my claim. I attended a public lecture years ago from a researcher about exactly this misconception.
I don't think it's simply a stylistic matter: it seems reasonable to assume that text in books tends to have higher information density, and contains longer and more complicated arguments (when compared to text obtained from social media posts, blogs, shorter articles, etc). If you want models that appear more intelligent, I think you need them to train on this kind of high-quality content.
The fact that these tend to be written in an older writing style is to me incidental. You could rewrite all your college text books in contemporary social media slang and I would still consider them high-quality texts.
If the competition boils down to who has access to the largest amount of high quality data, it's hard to see how anyone but Google could win in the end: through Google Books they have scans of tens of millions of books, and published books are the highest quality texts there are.
If there is one thing AI is currently shockingly bad at, it's updating its assumptions when it is confronted with evidence that they are incorrect. It will tirelessly spin its wheels (seemingly) forever laboring under a false assumption, running into dead end after dead end without ever coming to the conclusion that it should reexamine its assumptions.
As I understand it (also neither a mathematician nor French), it's a parody on a certain type of math paper, I'm guessing in abstract algebra, where the author does nothing but present a theory that is a "generalization" of some other theories, with no concern whether this generalization is helpful in any context.
So you get a "mustard watch", a thing which behaves simultaneously as a watch and as a mustard container, and finding a situation where that would be useful is an exercise for the reader.
The author teaches a college-level writing class. Are you suggesting that, if you voluntarily take a writing class, it's unreasonable if the professor expects you to do some writing outside of class?
Suppose I gave Provost 5% chance of winning the papal election. Then I would have been more accurate than Polymarket. But I wouldn't call betting on what I perceive as 5% chance of winning "making free money"; from my perspective it would still be a wild risk to bet any significant money on that outcome.