I will roll 4 numbers a b c d in that order each from 1 to 19. If the equation ax^2+bx+c=d has 2 real roots then this question will resolve in option 1. If it has one real root then this question will resolve in option 2. If it has imaginary roots then this question will resolve in option 3.
Hmmm:
```
>>> results = [random.randint(1,19) ** 2 - 4 * random.randint(1,19) * random.randint(1,19) for in range(1_000_000)]
>>> sum(1 for x in results if x < 0)
768280
>>> sum(1 for x in results if x == 0)
3666
>>> sum(1 for x in results if x > 0)
228054
```
If this is right, odds should be close to 76.8% imaginary, 0.4% 1 real, and 22.8% 2 real. I'm attempting to calculate the portion under the square root in the quadratic formula, which is the only piece that determines this. I'm open to being told I made some mistake here, but betting up the odds on my analysis anyways.
@4fa Reading comprehension fail:
```
>>> results = [random.randint(1,19) ** 2 - 4 * random.randint(1,19) * (random.randint(1,19)-random.randint(1,19)) for in range(1_000_000)]
>>> sum(1 for x in results if x < 0)
316873
>>> sum(1 for x in results if x == 0)
2364
>>> sum(1 for x in results if x > 0)
680763
```
🤦♂️