TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

The enigma of the Ford paradox

80 pointsby mefover 12 years ago

10 comments

Strilancover 12 years ago
Summary of the Ford paradox (which the post takes forever to actually get to): Quantum mechanics has only periodic orbits, but chaotic systems aren't periodic. How do we reconcile this with the existence of, say, double pendulums?<p>My guess: because the abstract double pendulum is a model that only approximates real double pendulums. Analogously, computers based on Turing Machines exist despite Turing Machines requiring an infinite amount of space.<p>---<p>Also, a minor nitpick: the post seems to equate 'not periodic' or 'chaotic' with 'is random', which I think is misleading. Pseudo-random, I guess, but the output of a simulation of a chaotic system is highly compressible and thus not random in the information theoretic sense.
评论 #5337420 未加载
评论 #5338039 未加载
评论 #5337651 未加载
lukevover 12 years ago
My math and physics is pretty weak, but it seems to me that this assertion is wrong:<p>&#62; Classically chaotic systems generate information over time.<p>Really? Simply being chaotic does not preclude a system from being deterministic. Every future state of the system is "present" given the initial conditions, even if it isn't predictable.<p>The situation is analogous to that of the digits of irrational numbers. I can't tell you a priori what the 2^1000th digit of pi is, but if I calculated for a million years I could find it out. It's not being "generated", it's just as much a part of pi as 3.14 is, just a little harder to access.<p>There may be true non-determinism in nature, but it isn't necessary for a system to be considered chaotic.
q_revertover 12 years ago
anyone who found the discussion of dynamical systems here interesting would be well served by having a look at <a href="http://www.scholarpedia.org/" rel="nofollow">http://www.scholarpedia.org/</a>, which has some very good articles on the area<p>[edit] <a href="http://www.scholarpedia.org/article/Encyclopedia_of_dynamical_systems" rel="nofollow">http://www.scholarpedia.org/article/Encyclopedia_of_dynamica...</a>
评论 #5337402 未加载
simonsterover 12 years ago
I'm not a physicist and don't remember QM all that well, so feel somewhat uncomfortable trying to comment on this, but I'm not sure I understand why this is a paradox rather than an intriguing curiosity. There is a lot of work out there on how chaos can be produced from order. Stephen Wolfram was famously obsessed with how simple, deterministic cellular automata can produce complex, chaotic behavior. There is an interesting problem here, but it seems to violate our intuitions rather than actual physical principles.
3pt14159over 12 years ago
The answer might be stuffed in the "this system will <i>likely</i> shut down prior to generating more information than the sum of the information in the individual subatomic particles."
jherikoover 12 years ago
Doesn't this miss something important about entropy and information creation? From what I understand the classical system isn't producing information...
评论 #5337645 未加载
评论 #5337547 未加载
pfortunyover 12 years ago
There is something I do not get: the behaviour of the macroscopic pendulum depends as well on random quantum events (f.e. the emmission of a photon or whatever). These are not deterministic nor linear nor "periodizable".<p>Am I missing something?<p>I guess this is relevant to the problem as well.
评论 #5338570 未加载
graycatover 12 years ago
When I was a senior in college, I went through the math of the double pendulum. The subject is mostly just ordinary differential equations although there is a cute role for a little matrix theory.<p>Generally it seems to me that the OP gets off into some not very well defined and not very relevant topics and, instead, for the 'chaos' he is observing there's a fairly easy explanation: The system is unstable. Or, in one step more detail, the system really is an initial value problem for an ordinary differential equation, but, going way back to Bellman's work on stability theory, it's long been well known, just from the equations, that the solution can be 'unstable', that is, small changes in the initial conditions (values) can result in large changes in the solution. And that is just from ordinary differential equations without considering quantum mechanics. And for the 'chaos' in the OP, that's about all the explanation that is needed.<p>Why? Because there is really no chance that the motion of the system could be periodic or even simple because it nearly never gets back accurately enough to an earlier state. So, the system often gets back to something 'close' to an earlier state, but the system is so unstable that 'close' is not close enough so that the earlier state and the present one close to that earlier state soon result in very different solutions for the future.<p>Something similar happens with pseudo random number generators, e.g., the usual linear congruential generators where we set<p>R(n + 1) = ( A * R(n) + B ) mod C<p>for n = 1, 2, ..., and R(1) some positive integer. Then roughly the R(n)/C are independent, identically distributed, uniform on [0,1). One of Knuth's recommendations (in one of the volumes of TACP) was A = 5^15, B = 1, C = 2^47. So, a point here is, get such 'random' numbers without considering phase space or quantum mechanics.<p>In a sense, this is a very old point: E.g., one dream before about 1900 was that we could observe the present state of the world and, then, use deterministic physics to predict the future. So, as I recall, it was E. Borel who did a calculation and concluded that a change of moving 1 gram of matter 1 cm, or some such, on a distant star would invalidate predictions on earth after just milliseconds (presumably starting after the travel time of light from that star to the earth).<p>We suspect we see much the same in weather prediction: Small changes in initial conditions too soon make changes large enough to switch between rain and sunshine. The usual joke is that a butterfly could flap its wings and convert a clear day to a hurricane.<p>We anticipate that probabilistically weather prediction is quite stable, that is, what is stable is the conditional probability distribution of the variables we use to measure weather conditioned on the present. In particular, we still believe in the law of conservation of energy.<p>Also we should notice the classic work on ergodic theory, by Hopf, Poincare, Birkhoff, etc.: The standard illustration is pouring cream into coffee and stirring. Then the theorem says that, if stir long enough, then can make the cream separate from the coffee back to as close as please to the original state. Why? Because if take the 'volume' of the possible states at some point in time and then let time pass, then the 'volume' of those states is still the same. So, as the system evolves, it is 'measure preserving' in state space. So, if want to apply this to a frictionless double pendulum, then can get it to return as close as we please to its initial state, but between then and now it is free to do a lot. This stuff goes back to the first half of the last century.<p>Likely there are some interesting and important questions in chaos theory, but what the OP is saying about the double pendulum seems to have a simple explanation.
DelvarWorldover 12 years ago
Is it worth it to try to figure out what this article is about? It's very non-accessible writing and I can't seem to find his point nor do I see a reason to care about it from scanning.
Nursieover 12 years ago
Never tried the Ford Paradox, quite like Mustangs though...
评论 #5337362 未加载