I came across this in a video game: killing a boss has a 3% chance to drop an item. I wanted to calculate the odds for dropping it 6 times in a row and it turned out to be 1 in 13 million chance, which sounds ridiculous to me. Could someone walk me through it and correct me if I was wrong? :)
My work:
3% -> 0.03
let a = 0.03^6
let b = a*100
1/b = ~13m
1 in 13 million chance???```