Roulette Prediction Algorithm Problem

In summary: If you're using the rim of the wheel as your reference, then ##\theta(0)## would be the angle of the ball from the center of the rim.You are not specifying what coordinate system you are using, so I can't help you with that.
  • #1
shlomi123
8
0
The roulette prediction algorithm is described here: http://pingless.co.il/roulette.pdf

And I have a problem with the formula attached
eq2.jpg

Where teta θ is position, velocity and acceleration of the ball. g is garvity force. r is the ball radius from center of the roulette. a is stator incline.
According to my calculations:
TrimCoefficient = -1/-34.13 Inch/Sec^2
ballVelocity = 120 Inch/Sec
Gravity = 386.09 Inch/Sec^2
Rrim = 14 Inches
statorIncline = (28/180)*3.14;
Trim = TrimCoefficient*(ballVelocity+math.sqrt( (Gravity/Rrim)*math.tan(statorIncline) ));
I get Trim=3.6 and it should be as I think (if you count from the start if the ball spin) Trim=18 at least.
 

Attachments

  • eq2.jpg
    eq2.jpg
    9.8 KB · Views: 390
  • eq2.jpg
    eq2.jpg
    9.8 KB · Views: 942
Physics news on Phys.org
  • #2
And also if someone can help me to solve why the units don't fit
If you substitute all the units you get -S^2/I*(I/S + 1/S) = S+S/I
And it should be seconds only why you get +S/I
 
  • #3
Angles should all be in radians.
##\dot\theta## should be in radians per second, but you're using a value in inches per second. And similarly for ##\ddot\theta##, it should be in radians/s^2 but you're using inches per second squared.

Since I suspect you are using linear velocity and linear acceleration at the rim, I think you need to divide by the radius to get the corresponding angular velocity and acceleration.
 
  • Like
Likes berkeman
  • #4
Hey thank you for your note,
this is my calculations after the radians / sec change:
Rrim = 14
TrimCoefficient = -1/(-30/Rrim)
print("TrimCoeff: "+str(TrimCoefficient))
ballVelocity = 88/Rrim
print("ballVelocity: "+str(ballVelocity))
# (65 - 88) / (1.36 - 1)
Gravity = 386.09
statorIncline = (28/180)*3.14;
Trim = TrimCoefficient*(ballVelocity+math.sqrt( (Gravity/Rrim)*math.tan(statorIncline) ));
print("Trim Trials: "+str(Trim))

and the result are:
TrimCoeff: 0.4666666666666667
ballVelocity: 6.285714285714286
Trim Trials: 4.719797943795565
 
  • #5
Your original velocity and acceleration were 120 and -34.13, respectively. In your new calculation you are using 88 and -30. I assume you really did intend to work the calculation with different parameters the second time?

That formula seems to be the correct implementation of the one you quoted. Are you happy with the results?
 
  • #6
Hey thank you, but I'm not happy from the results, Trim should be 18 as you can count from this movie
Because Trim is the time the ball is falling from the rim it completes about 11 circles and it takes 18 seconds and the formula says it takes only 4.7 seconds
What else could be wrong here
 
  • #7
Hey I think the acceleration is wrong because -30 inch/sec should stop the ball at speed 90 inch/ sec in 3 seconds do you agree? So the actual acceleration should be -5-10 inch / sec
 
  • #8
https://www.physicsforums.com/attachments/xxcc-jpg.232282/
This equation for the ball position of the roulette game taken from here: http://pingless.co.il/images/APCCAS08.pdf#page=3

This is my result:
Rrim = 14
ballPosition = (30/180)*3.14
ballVelocity = 88/Rrim (Convert inch/sec to rad/sec)
ballAcceleration = -8/Rrim (Convert inch/sec to rad/sec)
Tdefl = 18
ballAngle = float(ballPosition) + (ballVelocity*Tdefl) + 0.5*(ballAcceleration*Tdefl*Tdefl)
ballAngle = 21 Radians
What should 21 Radians mean?
 
Last edited:
  • #9
My guess is that the 21 radians means that the ball has orbited the wheel 3.34225 times. If its starting point was 0 degrees N then it would be ~123 degrees to the left of 0 degrees when it stopped.
 
  • #10
Hey but actually it's not make sense the ball orbited the wheel only 3.34 times it should orbit 11 times and more as you can see from this movie:
 
  • #11
Duplicate thread closed for Moderation...
 
  • #12
Threads merged and re-opened. @shlomi123 -- Please do not start multiple threads on the same subject. Thank you.
 
  • #13
Hey I still have a problem with this formula
FORM1.jpg

Which is from here: http://pingless.co.il/roulette.pdf#page=3

(1) I don't know from where in the wheel I should put the x-axis (zero angle) and (2) I don't know to define the θ(0) where the ball starts the orbit, please help me.

<< Mentor Note -- post edited to remove inappropriate content >>
 

Attachments

  • FORM1.jpg
    FORM1.jpg
    2.5 KB · Views: 382
Last edited by a moderator:
  • #14
As I read the initial graphic on that link, ##\theta## is the angle of the ball from the center of the wheel as reckoned in non-rotating coordinates. It does not matter what angle you take as ##\theta(0)## as long as you measure both starting and ending position using the same reference.
 

1. How does a roulette prediction algorithm work?

A roulette prediction algorithm works by using mathematical calculations and probability to predict the outcome of a roulette spin. It takes into account various factors such as the speed of the ball, the speed of the wheel, and the starting position of the ball to make a prediction.

2. Is it possible to accurately predict the outcome of a roulette spin?

No, it is not possible to accurately predict the outcome of a roulette spin every time. While a roulette prediction algorithm can increase the chances of predicting the outcome correctly, there are still many variables that can affect the result and make it unpredictable.

3. Are there any successful roulette prediction algorithms?

There have been some successful roulette prediction algorithms developed, but none of them have been proven to be 100% accurate. Casinos also constantly update their roulette wheels and use countermeasures to prevent players from using prediction algorithms.

4. Can a roulette prediction algorithm guarantee winnings?

No, a roulette prediction algorithm cannot guarantee winnings. While it may increase the chances of winning, roulette is still a game of chance and there is always a risk of losing. It is important to gamble responsibly and not rely solely on prediction algorithms for winning.

5. Is using a roulette prediction algorithm considered cheating?

Using a roulette prediction algorithm is not considered cheating as long as it does not involve any illegal devices or methods. However, casinos may still ban players who use prediction algorithms as it gives them an advantage over other players.

Back
Top