SA PowerBall Past Winning Numbers Search
HOW TO PLAY POWERBALL
To play Ithuba PowerBall, you have to choose a combination of 5 numbers from 1 to 50 and 1 extra number from 1 to 20 or choose QuickPick and the Lottery processing system randomly chooses 6 lucky numbers for you.
The game results are drawn every Tuesday and Friday at 21:00 at Etv. During the broadcast, the 5 winning numbers from the set of 50 balls are drawn plus a bonus number.
You can play as many boards as you want as well choosing Multi-Draw option will allow you to play the same numbers over multiple draws.
Ticket sales close at 20:30.
PowerBall lotto results drawn every Tuesday and Friday at 21:00.
POWERBALL WINNING OPTIONS
Div | Matched Numbers | Odds | Pool Fund PowerBall | Pool Fund PowerBall Plus | Parimutuel % | Prize % | Payout % |
---|---|---|---|---|---|---|---|
1 | Five Correct Numbers + POWERBALL | 42,375,200 | 55,384,977 | 27,692,488 | 70.73% | 54.46% | 26.14% |
2 | Five Correct Numbers | 2,230,274 | 214,106 | 107,053 | 5.19% | 4.00% | 1.92% |
3 | Four Correct Numbers + POWERBALL | 188,334 | 11,300 | 5,650 | 3.25% | 2.50% | 1.20% |
4 | Four Correct Numbers | 9,912 | 1,009 | 504 | 5.51% | 4.24% | 2.04% |
5 | Three Correct Numbers + POWERBALL | 4,280 | 493 | 247 | 6.23% | 4.80% | 2.30% |
6 | Three Correct Numbers | 225 | 22 | 11 | 5.19% | 4.00% | 1.92% |
7 | Two Correct Numbers + POWERBALL | 299 | 22 | 11 | 3.90% | 3.00% | 1.44% |
8 | One Correct Numbers + POWERBALL | 57 | Fixed R15 | Fixed R7.5 | N/A | 10.99% | 5.27% |
9 | MATCH POWERBALL | 35 | Fixed R10 | Fixed R7 | N/A | 12.01% | 5.77% |
Powerball : object
Kind: global namespace
-
:
- ⇒
- ⇒
- ⇒
- ⇒
- ⇒ |
Powerball.balls() ⇒
Get ball-maxes for a given date
Kind: static method of Returns: — white, red ball-max
Param | Type | Default | Description |
---|---|---|---|
Date to check |
Example (Current Ball Maxes)
// returns
powerball.balls()
Example (Old Ball Maxes)
// returns
powerball.balls(new Date(‘1/8/2009’))
Powerball.numbers() ⇒
Get past winning numbers
Kind: static method of Returns: — Resolves to array of winner objectsExample (Get Current Numbers)
powerball.numbers().then(winners => {
console.log(winners)
})
Powerball.frequencies(winners) ⇒
Calculate frequencies of white & red balls
Kind: static method of Returns: — keyed with number, value is frequency
Param | Type | Description |
---|---|---|
winners | The winning numbers from |
Example (Get Frequency Counts)
console.log(powerball.frequencies(winners))
Powerball.predict(white, red, ) ⇒
Predict winning numbers
Kind: static method of Returns: — The numbers you should play
Param | Type | Default | Description |
---|---|---|---|
white | White ball-frequency array from | ||
red | Red ball-frequency array from | ||
Different dates have differnt ball-sets |
Example (Get Prediction)
var f = powerball.frequencies(winners)
console.log(powerball.predict(f.white, f.red))
Example (Predict For an Old Date)
console.log(powerball.predict(f.white, f.red, new Date(‘1/1/98’)))
Powerball.payout(pick, winner, powerplay) ⇒ |
Kind: static method of Returns: | — true for jackpot, if Number: amount you won
Param | Type | Description |
---|---|---|
pick | Your number picks (6-length array) | |
winner | A single draw from | |
powerplay | Did you mark power-play on your ticket? |
Example (Check If You Won)
powerball.numbers().then(winners => {
console.log(powerbal.payout(, winners.pop(), true))
})