My (probably) last co-authorship paper from grad school is out!!

The long story short is, any evidence for Planet Nine is gone. It doesn't exist.

This is the most comprehensive study EVER that examines the original clustering argument, led by @kjnapes. Let's get into it!

đź§µ

First, some background.

In 2014, astronomers Scott Sheppard and Chad Trujillo noted a weird clustering in the orbital elements of the most distant Kuiper Belt Objects they'd found. They hypothesized sorta in passing that a new planet could be responsible.

Enter Batygin & Brown
Mike Brown & Konstantin Batygin originally set out to DISPROVE the new planet hypothesis!

But instead, their simulations suggested a new planet, & even predicted its properties!

The resulting paper set off the biggest planetary debate of the century since Pluto's demotion.
What's the debate?

Well, the argument for the last five years has all centered around the fact that you find objects where you look in the sky.

No surprise there, right?
This problem is complicated though, because the objects we're talking about have some of the most distant and elongated orbits of all the objects in the solar system.

We only find them when they're closest to the Sun, when they're at their brightest.
So if we only look at certain parts of the sky at certain times of year, we'll only find the objects that are in that part of the sky, at that time of year.

Which can lead to the APPEARANCE of clustered orbits that isn't actually REAL.

This effect is called selection bias.
The problem, and the root of the Planet Nine debate, is that most surveys don't make their selection biases publicly available.

You can't determine whether a particular object contributes to the clustering effect if you don't know the circumstances under which it was discovered!
The @OSSOSurvey has made this argument for the past five years. Their survey is the most meticulously documented and characterized survey I know of.

They know their selection biases EXTREMELY well. And that's thanks to @astrokiwi @sundogplanets and many others.
Now onto this most recent study.

A big issue with ALL of these studies is the small number of objects they consider.

The original hypothesis used 6.
OSSOS discovered 5.
My group with @theDESurvey discovered another 6.
A handful more were discovered by others.
As you can imagine, accounting for the selection biases of so many distinct groups is extremely difficult.

@kjnapes led a practically heroic effort to effectively combine OSSOS, @theDESurvey, and Sheppard & Trujillo's survey into one mega-survey.
The end result?

We're finding these very distant objects exactly where we expect to, based on where the telescopes pointed and when.

No funny business happening here. Therefore, no need for a new planet to explain anything!
Now, there are a lot of dynamical arguments about Planet Nine (as opposed to the observational one here).

I'm not going to get into those bc 1) I'm not a dynamicist and 2) I've been out of the field for almost two years.

But this is a hit to the Planet Nine hypothesis for sure
Anyways, huge congrats to @kjnapes @dAArkEnergy and the rest of the group on this fantastic paper! I'm so happy to see it finally out in the world!

https://t.co/9Ggv9vRy5E

More from Culture

You May Also Like

Great article from @AsheSchow. I lived thru the 'Satanic Panic' of the 1980's/early 1990's asking myself "Has eveyrbody lost their GODDAMN MINDS?!"


The 3 big things that made the 1980's/early 1990's surreal for me.

1) Satanic Panic - satanism in the day cares ahhhh!

2) "Repressed memory" syndrome

3) Facilitated Communication [FC]

All 3 led to massive abuse.

"Therapists" -and I use the term to describe these quacks loosely - would hypnotize people & convince they they were 'reliving' past memories of Mom & Dad killing babies in Satanic rituals in the basement while they were growing up.

Other 'therapists' would badger kids until they invented stories about watching alligators eat babies dropped into a lake from a hot air balloon. Kids would deny anything happened for hours until the therapist 'broke through' and 'found' the 'truth'.

FC was a movement that started with the claim severely handicapped individuals were able to 'type' legible sentences & communicate if a 'helper' guided their hands over a keyboard.
A brief analysis and comparison of the CSS for Twitter's PWA vs Twitter's legacy desktop website. The difference is dramatic and I'll touch on some reasons why.

Legacy site *downloads* ~630 KB CSS per theme and writing direction.

6,769 rules
9,252 selectors
16.7k declarations
3,370 unique declarations
44 media queries
36 unique colors
50 unique background colors
46 unique font sizes
39 unique z-indices

https://t.co/qyl4Bt1i5x


PWA *incrementally generates* ~30 KB CSS that handles all themes and writing directions.

735 rules
740 selectors
757 declarations
730 unique declarations
0 media queries
11 unique colors
32 unique background colors
15 unique font sizes
7 unique z-indices

https://t.co/w7oNG5KUkJ


The legacy site's CSS is what happens when hundreds of people directly write CSS over many years. Specificity wars, redundancy, a house of cards that can't be fixed. The result is extremely inefficient and error-prone styling that punishes users and developers.

The PWA's CSS is generated on-demand by a JS framework that manages styles and outputs "atomic CSS". The framework can enforce strict constraints and perform optimisations, which is why the CSS is so much smaller and safer. Style conflicts and unbounded CSS growth are avoided.