First of all, I am neither mathematician or statistician. I am an amateur who loves working with data. I have been trying to figure out to calculate the probabilities of tornadoes happening in certain locations.
I am only looking at Ohio and I have the following data for each 0.5 miles to 0.5 miles grid:
- If that grid was not impacted by a tornado at all, the value is
0 - If that grid was impacted by just one tornado, the value is
1 - If that grid was impacted by multiple tornadoes (2 or more), the value is
2
And the data is as followed:
- 93.83% of Ohio was never impacted by any tornadoes. (0)
- 4.66% of Ohio was only impacted by one tornado. (1)
- 1.50% of Ohio was impacted by multiple tornadoes. (2)
I am trying to calculate the probability of a tornado occurring in a location that was impacted by another tornado, and my calculations are as followed:
Probability of a tornado occurring independent of its location:
(4.66+1.50) / 100 = 6.17%
Given a tornado has occurred, probability of that tornado impacting a location that was impacted before:
1.50%/6.17% = 22.18%
Given a tornado has occurred, probability of that tornado impacting a location that was not impacted before: 4.66%/6.17% = 77.82%
Therefore probability of a tornado occurring in a location that was impacted before is:
(6.17 * 22.18)/100 = 1.37%
I feel like I am making a mistake somewhere but I can't pinpoint the problem. Are my calculations correct? If not, where am I making a mistake?
Whenever you ask for the probability of an event, you always need to specify the space of potential events from which the event is to be drawn. Sometimes the space is implicit from context—for example, a fair die roll is assumed to be drawn from the uniform distribution over {1, 2, 3, 4, 5, 6}. But in your case, there are several different questions you could be asking:
Your work makes it appear as if you’re calculating (1). Your arithmetic in “1.50%/6.17% = 22.18%” is incorrect, and if you corrected that, you’d notice that the final result is just 1.50% (because you take 1.50%, divide it by 6.17%, and then multiply it by 6.17% again). That is indeed the correct answer to (1); you’ll have to decide whether (1) is the question you intended to ask.