Deducing the value of one parameter
up vote
0
down vote
favorite
I'm working with Javascript and I need some help because I'm not great at math. I have the following code:
let x = (1 - t) * (1 - t) * (1 - t) * x0
+ 3 * (1 - t) * (1 - t) * t * x1
+ 3 * (1 - t) * t * t * x2
+ t * t * t * x3;
I know the values of x
, x0
, x1
, x2
and x3
. Is it possible to deduce the value of t
?
algebras
New contributor
add a comment |
up vote
0
down vote
favorite
I'm working with Javascript and I need some help because I'm not great at math. I have the following code:
let x = (1 - t) * (1 - t) * (1 - t) * x0
+ 3 * (1 - t) * (1 - t) * t * x1
+ 3 * (1 - t) * t * t * x2
+ t * t * t * x3;
I know the values of x
, x0
, x1
, x2
and x3
. Is it possible to deduce the value of t
?
algebras
New contributor
Do you know Cardano's method to solve third degree equation.
– hamam_Abdallah
Nov 17 at 19:44
No, I'm sorry, I don't
– enxaneta
Nov 17 at 19:49
1
Google it and you will get an idea.
– hamam_Abdallah
Nov 17 at 19:50
1
First you should expand out the expression so it has the following form: $at^3 + bt^2 + ct + (d-x) = 0$, where $a,b,c,d$ will be functions of $x_0,x_1,x_2,x_3$. Then you can use Cardano's method. You can implement it yourself, but you may even be able to find template code online or a built in library in JS.
– Aditya Dua
Nov 18 at 3:49
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm working with Javascript and I need some help because I'm not great at math. I have the following code:
let x = (1 - t) * (1 - t) * (1 - t) * x0
+ 3 * (1 - t) * (1 - t) * t * x1
+ 3 * (1 - t) * t * t * x2
+ t * t * t * x3;
I know the values of x
, x0
, x1
, x2
and x3
. Is it possible to deduce the value of t
?
algebras
New contributor
I'm working with Javascript and I need some help because I'm not great at math. I have the following code:
let x = (1 - t) * (1 - t) * (1 - t) * x0
+ 3 * (1 - t) * (1 - t) * t * x1
+ 3 * (1 - t) * t * t * x2
+ t * t * t * x3;
I know the values of x
, x0
, x1
, x2
and x3
. Is it possible to deduce the value of t
?
algebras
algebras
New contributor
New contributor
New contributor
asked Nov 17 at 19:37
enxaneta
1011
1011
New contributor
New contributor
Do you know Cardano's method to solve third degree equation.
– hamam_Abdallah
Nov 17 at 19:44
No, I'm sorry, I don't
– enxaneta
Nov 17 at 19:49
1
Google it and you will get an idea.
– hamam_Abdallah
Nov 17 at 19:50
1
First you should expand out the expression so it has the following form: $at^3 + bt^2 + ct + (d-x) = 0$, where $a,b,c,d$ will be functions of $x_0,x_1,x_2,x_3$. Then you can use Cardano's method. You can implement it yourself, but you may even be able to find template code online or a built in library in JS.
– Aditya Dua
Nov 18 at 3:49
add a comment |
Do you know Cardano's method to solve third degree equation.
– hamam_Abdallah
Nov 17 at 19:44
No, I'm sorry, I don't
– enxaneta
Nov 17 at 19:49
1
Google it and you will get an idea.
– hamam_Abdallah
Nov 17 at 19:50
1
First you should expand out the expression so it has the following form: $at^3 + bt^2 + ct + (d-x) = 0$, where $a,b,c,d$ will be functions of $x_0,x_1,x_2,x_3$. Then you can use Cardano's method. You can implement it yourself, but you may even be able to find template code online or a built in library in JS.
– Aditya Dua
Nov 18 at 3:49
Do you know Cardano's method to solve third degree equation.
– hamam_Abdallah
Nov 17 at 19:44
Do you know Cardano's method to solve third degree equation.
– hamam_Abdallah
Nov 17 at 19:44
No, I'm sorry, I don't
– enxaneta
Nov 17 at 19:49
No, I'm sorry, I don't
– enxaneta
Nov 17 at 19:49
1
1
Google it and you will get an idea.
– hamam_Abdallah
Nov 17 at 19:50
Google it and you will get an idea.
– hamam_Abdallah
Nov 17 at 19:50
1
1
First you should expand out the expression so it has the following form: $at^3 + bt^2 + ct + (d-x) = 0$, where $a,b,c,d$ will be functions of $x_0,x_1,x_2,x_3$. Then you can use Cardano's method. You can implement it yourself, but you may even be able to find template code online or a built in library in JS.
– Aditya Dua
Nov 18 at 3:49
First you should expand out the expression so it has the following form: $at^3 + bt^2 + ct + (d-x) = 0$, where $a,b,c,d$ will be functions of $x_0,x_1,x_2,x_3$. Then you can use Cardano's method. You can implement it yourself, but you may even be able to find template code online or a built in library in JS.
– Aditya Dua
Nov 18 at 3:49
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
enxaneta is a new contributor. Be nice, and check out our Code of Conduct.
enxaneta is a new contributor. Be nice, and check out our Code of Conduct.
enxaneta is a new contributor. Be nice, and check out our Code of Conduct.
enxaneta is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3002728%2fdeducing-the-value-of-one-parameter%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Do you know Cardano's method to solve third degree equation.
– hamam_Abdallah
Nov 17 at 19:44
No, I'm sorry, I don't
– enxaneta
Nov 17 at 19:49
1
Google it and you will get an idea.
– hamam_Abdallah
Nov 17 at 19:50
1
First you should expand out the expression so it has the following form: $at^3 + bt^2 + ct + (d-x) = 0$, where $a,b,c,d$ will be functions of $x_0,x_1,x_2,x_3$. Then you can use Cardano's method. You can implement it yourself, but you may even be able to find template code online or a built in library in JS.
– Aditya Dua
Nov 18 at 3:49