Live data from Hacker News

Ask HN: What scientific phenomenon do you wish someone would explain better?

news.ycombinator.com

131–140 of 839 posts

Re: Ask HN: What scientific phenomenon do you wish someone would explain better?

#131

Wave function collapse. As far as I can tell there is no discernable difference between a particle whose wave function collapsed (perhaps via measurement with another entangled one) and one that hasn't.

This is super naive but I just think of it as you (or whatever other particle is interacting with the one of interest) have now become part of its system. Like a causal event cone reaching you. Nothing about the particle changed, just your relationship with it (hence locking down the uncertain parameters).

I'm sure you or another physicist could point out the flaws in my mental model.

Re: Ask HN: What scientific phenomenon do you wish someone would explain better?

#132
A non handwavy explanation of how does evolution result in such complicated and carefully orchestrated mechanisms, way beyond our engineering capability. The computer analogy of genetic algorithms certainly doesn't explain much, they are not very effective, and if they were, we should be able to generate marvels of engineering with GAs and current computational power.

Re: Ask HN: What scientific phenomenon do you wish someone would explain better?

#133

Coroutines in C++.

Coroutines are most easily understood as a way to write a state machine in a way that looks like a function. I.e., it's just a notational trick to make one function do different things according to when it's called.

To see it, imagine you have a struct with a data member for each local variable of your function, and replace your function with a member function that has no local variables, but uses "this" to get at what was local data.

Add one more data member, a number that is set differently right before each place the function returns.

Finally, insert some code at the start of the function that, according to the number, jumps to just after the last return statement executed.

Then, each time you call the function, what happens depends on what happened last time.

There are more details, but that is the gist.

You can write that yourself in C++98, with the body of the function inside a switch statement. Getting it past code review would be the real challenge.

Re: Ask HN: What scientific phenomenon do you wish someone would explain better?

#135

Entropy. Sometimes you read that it's a measure of randomness; sometimes, information. Aren't randomness and information opposites?

Let me give an analogy and then a solution to your paradox. Temperature. Sometimes you read that it's a measure of warmth; sometimes cold. Aren't hot and cold opposites? Yes, hot and cold are opposites, but in a way they give the same kind of information. That's also true for information and randomness. Specifically, little randomness means more (certain) information.

[deleted]

Re: Ask HN: What scientific phenomenon do you wish someone would explain better?

#136
post #112

When two particles get closer, their mutual gravitational attraction increases. As the distance approaches zero, the force approaches infinity. In the limit of d -> 0, the energy released -> infinity. Obviously at some scale the notion of a point mass breaks down, but even quantum theory would be problematic if we think of a wave function as describing a probability distribution, wouldn't it? What's the "official" st…

What follows is very hand-wavy, and the renormalization sibling post may touch on it.

An answer is that the d->0 approaches infinity presumes a nice, continuous analytic function. If d->epsilon, you can't get to that singularity.

There was an equivalent problem in the E/M space with "The Ultraviolet Catastrophe" [1], which turned out to go away if you assumed quantization.

I'm not going to claim this is a perfect analog to the gravity problem, only that a lot of physics doesn't quite work right when you assume continuity. (The Dirac delta is a humorous exception that proves the rule here, in that doing the mathematically weird thing actually is closer to how physics works, and it required "distribution theory" as a discipline to prove it sound.)

[1] https://en.wikipedia.org/wiki/Ultraviolet_catastrophe

Re: Ask HN: What scientific phenomenon do you wish someone would explain better?

#137
post #119

I would like to understand how cellular biology processes actually work. Like, how do all the right modules and proteins line up in the right orientation every time? Every time I watch animations, it seems like the proteins and such just magically appear when needed and disappear when not needed [0]. Sometimes it's an ultra-complex looking protein and it just magically flys over to the DNA, attaches to the correct sp…

From a physics perspective I bet you have two things happening:

1. These molecules are moving around a lot. The kinetic energy of molecules at room or body temperature gives them impressive velocity relative to their scale, and they're also rotating altogether and internally.

2. Compatible molecules are like magnetic keys and locks. They attract each other and the forces align with meeting points. The same way that proteins fold spontaneously.

So the remaining part is getting concentrations appropriate for what you want to happen - and that's a matter of signaling molecules and "automatic" cell responses to changes in equilibrium. It's a really chaotic system and it's a wonder it works at all.

I imagine that's also one reason life is imprecise, i.e. no two individuals are alike even with identical genes. There's a lot of extra "entropy" introduced by that mess of a soup.

Re: Ask HN: What scientific phenomenon do you wish someone would explain better?

#138
post #78

Mach's principle. Why is there a "preferred" rotational frame of reference in the universe? Or as stated in this Wikipedia article, "You are standing in a field looking at the stars. Your arms are resting freely at your side, and you see that the distant stars are not moving. Now start spinning. The stars are whirling around you and your arms are pulled away from your body. Why should your arms be pulled away when th…

The two most obvious solutions to the thought experiment presented are either 1) space is absolute in some way (i.e. the classical Newtonian response) or 2) the behavior of space "here" is affected by the by distribution of matter "over there". General relativity gives us a strong argument in favor of (2) by showing that a) many physical principles thought to be absolute are actually relative and b) showing that mass "over there" affects the shape of space "here".

To say anything more concrete requires requires defining the question much more precisely. I believe there is still some disagreement on the interpretation of Mach's principle in light of general relativity. For example, see https://en.wikipedia.org/wiki/Mach's_principle#Variations_in... (and a couple sections above, the 1993 poll of physicists asking: "Is general relativity with appropriate boundary conditions of closure of some kind very Machian?"

I hope that is helpful in some way.

Re: Ask HN: What scientific phenomenon do you wish someone would explain better?

#139

Entropy. Sometimes you read that it's a measure of randomness; sometimes, information. Aren't randomness and information opposites?

Information is actually about _reduction_ in entropy. Roughly speaking, entropy measures the amount of uncertainty about some event you might try to predict. Now, if you observe some new fact that has high (mutual) information with the event, it means the new fact has significantly reduced your uncertainty about the outcome of the event. In this sense, entropy measures the maximum amount of information you could possibly learn about the outcome to some uncertain event. An interesting corollary here is that the entropy of an event also puts an upper bound on the amount of information it can convey about _any_ other event.

I think one frequent source of confusion is the difference between "randomness" and "uncertainty" in colloquial versus formal usage. Entropy and randomness in the formal sense don't have a strong connotation that the uncertainty is intrinsic and irreducible. In the colloquial sense, I feel like there's often an implication that the uncertainty can't be avoided.

Post reply on HN