Non-linear system of 3 equations












0














I have a system of 3 equations with the unknown $(x,y,z)$ to solve in the space $mathbb{R}^2 times mathbb{R}_+^{*}$ :
$$m=x-y \ v=x^2(z-1) \gamma=x^3(z^3+3z-2)$$



with $m in mathbb{R}$, $v>0$ , $gamma in mathbb{R}$ and $z>1$



Numerically, I easily find the solution with a solver, but I cannot figure out whether a closed-form formula of the solution exists.



Thanks.










share|cite|improve this question




















  • 1




    It looks like you can treat the two equations in $x,z$ as a separate pair and solve those, then finish by solving the first. Have you attempted to factor $z^3+3z-2$?
    – abiessu
    Nov 21 '18 at 15:08






  • 1




    Actually, $z>1$, I tried but I end up solving $$gamma=(z^3+3z-2)*(frac{v}{z-1})^{frac{3}{2}}$$
    – Canardini
    Nov 21 '18 at 15:31


















0














I have a system of 3 equations with the unknown $(x,y,z)$ to solve in the space $mathbb{R}^2 times mathbb{R}_+^{*}$ :
$$m=x-y \ v=x^2(z-1) \gamma=x^3(z^3+3z-2)$$



with $m in mathbb{R}$, $v>0$ , $gamma in mathbb{R}$ and $z>1$



Numerically, I easily find the solution with a solver, but I cannot figure out whether a closed-form formula of the solution exists.



Thanks.










share|cite|improve this question




















  • 1




    It looks like you can treat the two equations in $x,z$ as a separate pair and solve those, then finish by solving the first. Have you attempted to factor $z^3+3z-2$?
    – abiessu
    Nov 21 '18 at 15:08






  • 1




    Actually, $z>1$, I tried but I end up solving $$gamma=(z^3+3z-2)*(frac{v}{z-1})^{frac{3}{2}}$$
    – Canardini
    Nov 21 '18 at 15:31
















0












0








0







I have a system of 3 equations with the unknown $(x,y,z)$ to solve in the space $mathbb{R}^2 times mathbb{R}_+^{*}$ :
$$m=x-y \ v=x^2(z-1) \gamma=x^3(z^3+3z-2)$$



with $m in mathbb{R}$, $v>0$ , $gamma in mathbb{R}$ and $z>1$



Numerically, I easily find the solution with a solver, but I cannot figure out whether a closed-form formula of the solution exists.



Thanks.










share|cite|improve this question















I have a system of 3 equations with the unknown $(x,y,z)$ to solve in the space $mathbb{R}^2 times mathbb{R}_+^{*}$ :
$$m=x-y \ v=x^2(z-1) \gamma=x^3(z^3+3z-2)$$



with $m in mathbb{R}$, $v>0$ , $gamma in mathbb{R}$ and $z>1$



Numerically, I easily find the solution with a solver, but I cannot figure out whether a closed-form formula of the solution exists.



Thanks.







real-analysis linear-algebra systems-of-equations






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Nov 21 '18 at 15:30

























asked Nov 21 '18 at 15:01









Canardini

2,4751519




2,4751519








  • 1




    It looks like you can treat the two equations in $x,z$ as a separate pair and solve those, then finish by solving the first. Have you attempted to factor $z^3+3z-2$?
    – abiessu
    Nov 21 '18 at 15:08






  • 1




    Actually, $z>1$, I tried but I end up solving $$gamma=(z^3+3z-2)*(frac{v}{z-1})^{frac{3}{2}}$$
    – Canardini
    Nov 21 '18 at 15:31
















  • 1




    It looks like you can treat the two equations in $x,z$ as a separate pair and solve those, then finish by solving the first. Have you attempted to factor $z^3+3z-2$?
    – abiessu
    Nov 21 '18 at 15:08






  • 1




    Actually, $z>1$, I tried but I end up solving $$gamma=(z^3+3z-2)*(frac{v}{z-1})^{frac{3}{2}}$$
    – Canardini
    Nov 21 '18 at 15:31










1




1




It looks like you can treat the two equations in $x,z$ as a separate pair and solve those, then finish by solving the first. Have you attempted to factor $z^3+3z-2$?
– abiessu
Nov 21 '18 at 15:08




It looks like you can treat the two equations in $x,z$ as a separate pair and solve those, then finish by solving the first. Have you attempted to factor $z^3+3z-2$?
– abiessu
Nov 21 '18 at 15:08




1




1




Actually, $z>1$, I tried but I end up solving $$gamma=(z^3+3z-2)*(frac{v}{z-1})^{frac{3}{2}}$$
– Canardini
Nov 21 '18 at 15:31






Actually, $z>1$, I tried but I end up solving $$gamma=(z^3+3z-2)*(frac{v}{z-1})^{frac{3}{2}}$$
– Canardini
Nov 21 '18 at 15:31












1 Answer
1






active

oldest

votes


















1














A standard way to solve the last two equations, would be to square the last and cube the other to solve for $z$ (expect when $x=0$, but in this case $y=-m$ and $z$ can be anything):
$$
v³(z³+3z-2)²-gamma^2(z-1)³ = 0
$$

This gives a sixth order polynomial that you still have to check for extraneous solutions (as we have squared and lost the sign of $gamma$ and $x$). But than, using the second, we get:
$$
x = pmsqrt{frac{v}{z-1}}
$$

Which also requires $z>1$ for a solution, and finally using the first one:
$$
y = x - m
$$






share|cite|improve this answer





















  • Yes, exactly, but how do I solve the first equation ? I feel anyhow I need to you use a numerical solver .
    – Canardini
    Nov 21 '18 at 15:35












  • It is not possible if you cannot reduce the degree of the polynomial with some cleaver trick, which does not seems to be possible as your coefficients depends on the parameters.
    – Eduardo Elael
    Nov 21 '18 at 15:50











Your Answer





StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3007824%2fnon-linear-system-of-3-equations%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














A standard way to solve the last two equations, would be to square the last and cube the other to solve for $z$ (expect when $x=0$, but in this case $y=-m$ and $z$ can be anything):
$$
v³(z³+3z-2)²-gamma^2(z-1)³ = 0
$$

This gives a sixth order polynomial that you still have to check for extraneous solutions (as we have squared and lost the sign of $gamma$ and $x$). But than, using the second, we get:
$$
x = pmsqrt{frac{v}{z-1}}
$$

Which also requires $z>1$ for a solution, and finally using the first one:
$$
y = x - m
$$






share|cite|improve this answer





















  • Yes, exactly, but how do I solve the first equation ? I feel anyhow I need to you use a numerical solver .
    – Canardini
    Nov 21 '18 at 15:35












  • It is not possible if you cannot reduce the degree of the polynomial with some cleaver trick, which does not seems to be possible as your coefficients depends on the parameters.
    – Eduardo Elael
    Nov 21 '18 at 15:50
















1














A standard way to solve the last two equations, would be to square the last and cube the other to solve for $z$ (expect when $x=0$, but in this case $y=-m$ and $z$ can be anything):
$$
v³(z³+3z-2)²-gamma^2(z-1)³ = 0
$$

This gives a sixth order polynomial that you still have to check for extraneous solutions (as we have squared and lost the sign of $gamma$ and $x$). But than, using the second, we get:
$$
x = pmsqrt{frac{v}{z-1}}
$$

Which also requires $z>1$ for a solution, and finally using the first one:
$$
y = x - m
$$






share|cite|improve this answer





















  • Yes, exactly, but how do I solve the first equation ? I feel anyhow I need to you use a numerical solver .
    – Canardini
    Nov 21 '18 at 15:35












  • It is not possible if you cannot reduce the degree of the polynomial with some cleaver trick, which does not seems to be possible as your coefficients depends on the parameters.
    – Eduardo Elael
    Nov 21 '18 at 15:50














1












1








1






A standard way to solve the last two equations, would be to square the last and cube the other to solve for $z$ (expect when $x=0$, but in this case $y=-m$ and $z$ can be anything):
$$
v³(z³+3z-2)²-gamma^2(z-1)³ = 0
$$

This gives a sixth order polynomial that you still have to check for extraneous solutions (as we have squared and lost the sign of $gamma$ and $x$). But than, using the second, we get:
$$
x = pmsqrt{frac{v}{z-1}}
$$

Which also requires $z>1$ for a solution, and finally using the first one:
$$
y = x - m
$$






share|cite|improve this answer












A standard way to solve the last two equations, would be to square the last and cube the other to solve for $z$ (expect when $x=0$, but in this case $y=-m$ and $z$ can be anything):
$$
v³(z³+3z-2)²-gamma^2(z-1)³ = 0
$$

This gives a sixth order polynomial that you still have to check for extraneous solutions (as we have squared and lost the sign of $gamma$ and $x$). But than, using the second, we get:
$$
x = pmsqrt{frac{v}{z-1}}
$$

Which also requires $z>1$ for a solution, and finally using the first one:
$$
y = x - m
$$







share|cite|improve this answer












share|cite|improve this answer



share|cite|improve this answer










answered Nov 21 '18 at 15:32









Eduardo Elael

30115




30115












  • Yes, exactly, but how do I solve the first equation ? I feel anyhow I need to you use a numerical solver .
    – Canardini
    Nov 21 '18 at 15:35












  • It is not possible if you cannot reduce the degree of the polynomial with some cleaver trick, which does not seems to be possible as your coefficients depends on the parameters.
    – Eduardo Elael
    Nov 21 '18 at 15:50


















  • Yes, exactly, but how do I solve the first equation ? I feel anyhow I need to you use a numerical solver .
    – Canardini
    Nov 21 '18 at 15:35












  • It is not possible if you cannot reduce the degree of the polynomial with some cleaver trick, which does not seems to be possible as your coefficients depends on the parameters.
    – Eduardo Elael
    Nov 21 '18 at 15:50
















Yes, exactly, but how do I solve the first equation ? I feel anyhow I need to you use a numerical solver .
– Canardini
Nov 21 '18 at 15:35






Yes, exactly, but how do I solve the first equation ? I feel anyhow I need to you use a numerical solver .
– Canardini
Nov 21 '18 at 15:35














It is not possible if you cannot reduce the degree of the polynomial with some cleaver trick, which does not seems to be possible as your coefficients depends on the parameters.
– Eduardo Elael
Nov 21 '18 at 15:50




It is not possible if you cannot reduce the degree of the polynomial with some cleaver trick, which does not seems to be possible as your coefficients depends on the parameters.
– Eduardo Elael
Nov 21 '18 at 15:50


















draft saved

draft discarded




















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3007824%2fnon-linear-system-of-3-equations%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter