You are not logged in.
81=0 Mod 9 // Right or Wrong?
Offline
That's right! Because when you divide 81 by 9 you have a remainder of 0.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Alright I think I got it, although I may pop in a Modulo question with an answer to which you just answer right or wrong just so I'm sure
Lets move on
Offline
Are you sure. I can show you how to calculate them, so you won't have to guess.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
I wasn't guessing If you want to show me you're method you can !
Offline
For 23 mod 6 you take and divide 23 by 6. You get 3.83333333. Now you use the floor function to turn 3.8333333333 into 3. 23 - ( 3 * 6 ) = 5. So
This will work for the simple types we are doing.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
How did you get 3.23 from 3.83 ?
Offline
Hi Superlynx;
function to turn 3.8333333333 into 3. 23 - ( 3 * 6 ) = 5. So
That is a good one! It is not 3.23, it is 3 period. That is not a decimal point. Next sentence 23 - ( 3 * 6 ) = 5
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
I think I understand throw me another question Then lets move on
Offline
Okay,
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
1237=19 Mod 29
Correct or Wrong ?
Offline
Kayrect! You are growing stronger with the force, just don't turn to the dark side.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
I won't, the force is over powering the dark side
Offline
Okay, pose your next question.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
How does a 3x3 and a 4x4 matrix work in the world of X,Y,Z ?
Offline
Hi Superlynx;
That is a very general question. We represent X,Y,Z coordinates in 3 x 3 and rotate them around using Jacobian transformations. You need to have a much smaller question. A much more precise one. What you asked for is many many books.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
How would you translate a sphere on the Y based on the rotation of a cube on the X ?
I hope that is more precise, otherwise I have to think on this
Offline
That is not a simple operation. I am not really that knowledgeable on computer graphics since I have not programmed a game in a long time.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
How does Clamp work ?
Offline
Hi SuperLynx;
I only know one usage for clamp. It is a math function implemented in some languages.
If number < = low return low
If number > = high return high
else return number.
clamp( number, low, high )
clamp( 21, 2 , 10 ) returns 10
clamp( 11, 5, 17 ) returns 11
Clamp does just that it makes sure a value stays between high and low.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
ball.local.posy=MAX( MIN( box.local.posy, 723 ), -500 )
This Clamp is saying clamp the ball between 723 on the Y position MIN and -500 on the Y position MAX?
Offline
Hi SuperLynx;
Yes, you are clamping the values between [ -500, 723 ]
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
I need to figure out Matrix, arrrgh.
Offline
How can I, I need to understand it.
Offline
Hi SuperLynx;
A matrix is a box or rectangular array of numbers. It is the operations that you perform on the matrix that are important. Here is what one looks like.
Notice they are labeled using capital letters,
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline