top | item 42872244

(no title)

VierScar | 1 year ago

I'm sure there's a reason, but it seems like an unusual use of Monte Carlo - it's all deterministic and there is no opposing player making choices. Must have something to do with uncertainties in projected orbits or imperfect simulations maybe?

discuss

order

NL807|1 year ago

>it's all deterministic and there is no opposing player making choices

It's not deterministic, it's chaotic. That is the nature of the N-body problem. We can only approximate trajectories in such a system using numerical methods, within a certain margin of error. In principle, the object is gravitationally interacting with everything else in the solar system. But for the most part, most interactions are negligible and could be ignored (eg, other small objects far away), except of the large bodies. But there are many unknowns (as stated before), where initial conditions will affect the outcome of the trajectory simulation, and errors will certainly amplify over time. I'm guessing Monte Carlo is used to "fuzz" the simulations with randomised initial conditions to account for the range of unknowns, and see what the outcome is under these different scenarios.

coderenegade|1 year ago

Chaotic doesn't mean non-deterministic, it just means that small changes in initial conditions result in a large change in the trajectory. The system itself can be both chaotic and deterministic.

It's also a reasonable question to ask, because the simulations are deterministic. It's just that because the system is also chaotic and there's noise in the measurement, that can result in a large spread of deterministic trajectory simulations.

jaggederest|1 year ago

At the very least you can use monte carlo to provide examples from the expected distribution. It's hard to visualize a probability cloud.

basementcat|1 year ago

The observations are not 100% certain. There are a variety of body states and configurations that might result in the same (few) pixels being lit up in the few measurements collected so far. As additional measurements are collected, some possibilities may be eliminated and the uncertainty of the trajectory can be reduced. This usually results in the impact probability converging toward 0%.

davrosthedalek|1 year ago

...or 100%. But yeah, the MC comes in this way. You have a current most probable value for the position and some distribution around it, depending on the precision of the measurement device etc. That can be a high-dimensional space. You draw some (many) random points from this space and propagate them all deterministically. Taking into account how likely a certain random point was in the first place, you can then estimate the hit probability.

MC is numerically approximating an integral. Here it replaces the high-dim integral over the start parameters.

RossBencina|1 year ago

I would assume that it is because we have imperfect knowledge of the state of the asteroid (i.e. mass and current position/velocity/...). This imperfect knowledge is characterised by a probability distribution. Similarly the state of all other objects in the solar system is only known up to some distribution. To propagate the information forward in time to impact requires a complicated function f(state of solar system; state of asteroid). If all of the data was known (and expressible numerically) with perfect accuracy, and f were computable with perfect accuracy then all would be good. But as noted, (state of solar system; state of asteroid) is a probability distribution, and there are very few distributions and very few types of maps f that are amenable to analytic transformation. For example if the state was a normal distribution with mean x and covariance P, and f were a linear transformation, then x,P mapped through f is also normally distributed with mean y and covariance P_y, you can get the mean of the transform as y=fx, and P_y = fPf' (where ' indicates transpose). Needless to say our knowledge of the state of the asteroid and the solar system is probably a rather complicated distribution, and the n-body problem is not a linear transformation. Monte-carlo simulation is often used to propagate probability distributions through non-linear transformations.

cozzyd|1 year ago

It is very common to use Monte Carlo for deterministic problems. It's just an integral over complicated PDFs

andrepd|1 year ago

It's "deterministic" the same way the weather is.

brewtide|1 year ago

Exactly. It will do exactly this, as long as nothing changes.

refulgentis|1 year ago

Right:

- "Since we saw it so briefly, our knowledge of its orbit is not that great"

- "[for example, in 2016 the data shows] a large chunk of sky where it could have been, and [the object is quite small."

- "Our knowledge of the diameter of this object is a bit fuzzy, because of surface reflectivity,"

Projectiboga|1 year ago

The guesswork is uncertainity about the object's exact paraneters. Because of this they have to use informed estimates (scientiffic guesswork).

zacharycohn|1 year ago

Right - we only got a short glimpse of it, not enough to get a high confidence of its trajectory.