Solving a linear system of reciprocals.Trouble Solving a system of 3 equationsSolving a system of equations with variables in denominator.Solving system of three quadratic equationsSolving system of non-linear equations.Solving a combined system of linear and bilinear equationsHow to solve the system of non-linear equations?Solving a system of equations $(x+y-z=1), (x^2+y^2-z^2=5-2xy), (x^3+y^3-z^3=43-3xy)$Easier solution for system of equations.Solving in terms of z , three variable two equation systemSolve the following system of equations - (4).
What's weird about Proto-Indo-European Stops?
Appropriate age to involve kids in life changing decisions
Why doesn't increasing the temperature of something like wood or paper set them on fire?
I want to write a blog post building upon someone else's paper, how can I properly cite/credit them?
shebang or not shebang
What’s the interaction between darkvision and the Eagle Aspect of the beast, if you have Darkvision past 100 feet?
Why did Dr. Strange keep looking into the future after the snap?
Why were the rules for Proliferate changed?
If quadruped mammals evolve to become bipedal will their breast or nipple change position?
Translation of "invincible independence"
Convert Numbers To Emoji Math
While drilling into kitchen wall, hit a wire - any advice?
When does WordPress.org notify sites of new version?
Did any early RISC OS precursor run on the BBC Micro?
Do the Zhentarim fire members for killing fellow members?
Does every non-empty set admit an (affine) scheme structure (in ZFC)?
In a series of books, what happens after the coming of age?
Splitting polygons and dividing attribute value proportionally using ArcGIS Pro?
Is there a reason why Turkey took the Balkan territories of the Ottoman Empire, instead of Greece or another of the Balkan states?
Can a player choose to add detail and flavor to their character's spells and abilities?
Justification of physical currency in an interstellar civilization?
Why is there a cap on 401k contributions?
Can I use LPGL3 for library and Apache 2 for "main()"?
The unknown and unexplained in science fiction
Solving a linear system of reciprocals.
Trouble Solving a system of 3 equationsSolving a system of equations with variables in denominator.Solving system of three quadratic equationsSolving system of non-linear equations.Solving a combined system of linear and bilinear equationsHow to solve the system of non-linear equations?Solving a system of equations $(x+y-z=1), (x^2+y^2-z^2=5-2xy), (x^3+y^3-z^3=43-3xy)$Easier solution for system of equations.Solving in terms of z , three variable two equation systemSolve the following system of equations - (4).
$begingroup$
Solve for $begincasesfrac1x +frac1y+frac1z=0\frac4x +frac3y+frac2z=5\frac3x +frac2y+frac4z=-4endcases$
I turn the equations into $begincasesyz+xz+xy=0\4yz+3xz+2xy=5xyz\3yz+2xz+4xy=-4xyzendcases$
Not sure if I am doing fine
systems-of-equations cubic-equations rational-functions symmetric-polynomials
$endgroup$
add a comment |
$begingroup$
Solve for $begincasesfrac1x +frac1y+frac1z=0\frac4x +frac3y+frac2z=5\frac3x +frac2y+frac4z=-4endcases$
I turn the equations into $begincasesyz+xz+xy=0\4yz+3xz+2xy=5xyz\3yz+2xz+4xy=-4xyzendcases$
Not sure if I am doing fine
systems-of-equations cubic-equations rational-functions symmetric-polynomials
$endgroup$
add a comment |
$begingroup$
Solve for $begincasesfrac1x +frac1y+frac1z=0\frac4x +frac3y+frac2z=5\frac3x +frac2y+frac4z=-4endcases$
I turn the equations into $begincasesyz+xz+xy=0\4yz+3xz+2xy=5xyz\3yz+2xz+4xy=-4xyzendcases$
Not sure if I am doing fine
systems-of-equations cubic-equations rational-functions symmetric-polynomials
$endgroup$
Solve for $begincasesfrac1x +frac1y+frac1z=0\frac4x +frac3y+frac2z=5\frac3x +frac2y+frac4z=-4endcases$
I turn the equations into $begincasesyz+xz+xy=0\4yz+3xz+2xy=5xyz\3yz+2xz+4xy=-4xyzendcases$
Not sure if I am doing fine
systems-of-equations cubic-equations rational-functions symmetric-polynomials
systems-of-equations cubic-equations rational-functions symmetric-polynomials
edited May 3 at 5:38
Harry Peter
5,55411439
5,55411439
asked Apr 28 at 15:43
DavidDavid
764
764
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
$begingroup$
If the reciprocals are freaking you out, just let $t=frac1x,u=frac1y,v=frac1z,$ so you have the system $$begincasest +u+v=0\4t +3u+2v=5\3t +2u+4v=-4endcases$$ Once you've solved this, as long as none of $t,u,v$ is $0,$ you can simply let $x=frac1t,y=frac1u,z=frac1v.$ If one or more of $t,u,v$ is $0,$ then the system has no solution.
$endgroup$
add a comment |
$begingroup$
It's much easier to solve the linear system for the reciprocals then take the reciprocal to get the result.
$endgroup$
add a comment |
$begingroup$
how about this, let:
$$X=frac1x,,Y=frac1y,,Z=frac1z$$
and it is much easier to solve the following:
$$beginpmatrix
1&1&1\
4&3&2\
3&2&4
endpmatrix
beginpmatrix
X\
Y\
Z
endpmatrix=
beginpmatrix
0\5\-4
endpmatrix
$$
$endgroup$
add a comment |
$begingroup$
Observe that the system's matrix of the reciprocal of the unknowns is:
$$A=beginpmatrix1&1&1&0\
4&3&2&5\
3&2&4&-4endpmatrixstackrelR_2-4R_1,,R_3-3R_1longrightarrowbeginpmatrix1&1&1&0\
0&-1&-2&5\
0&-1&1&-4endpmatrixstackrelR_3-R_2longrightarrow$$
$$beginpmatrix1&1&1&0\
0&-1&-2&5\
0&0&3&-9endpmatrix$$
Try to finish the exercise now, taking into account that the third column represents $;cfrac 1z;$ , the second $;cfrac1y;$ and the first one $;cfrac1x;$
$endgroup$
2
$begingroup$
There's an error at the 1st step: the third row should be $;0;-1; colorred+1;-4$.
$endgroup$
– Bernard
Apr 28 at 15:57
$begingroup$
@Bernard Good catch, edited. Thanks.
$endgroup$
– DonAntonio
Apr 28 at 18:43
add a comment |
Your Answer
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
);
);
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%2f3205742%2fsolving-a-linear-system-of-reciprocals%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
If the reciprocals are freaking you out, just let $t=frac1x,u=frac1y,v=frac1z,$ so you have the system $$begincasest +u+v=0\4t +3u+2v=5\3t +2u+4v=-4endcases$$ Once you've solved this, as long as none of $t,u,v$ is $0,$ you can simply let $x=frac1t,y=frac1u,z=frac1v.$ If one or more of $t,u,v$ is $0,$ then the system has no solution.
$endgroup$
add a comment |
$begingroup$
If the reciprocals are freaking you out, just let $t=frac1x,u=frac1y,v=frac1z,$ so you have the system $$begincasest +u+v=0\4t +3u+2v=5\3t +2u+4v=-4endcases$$ Once you've solved this, as long as none of $t,u,v$ is $0,$ you can simply let $x=frac1t,y=frac1u,z=frac1v.$ If one or more of $t,u,v$ is $0,$ then the system has no solution.
$endgroup$
add a comment |
$begingroup$
If the reciprocals are freaking you out, just let $t=frac1x,u=frac1y,v=frac1z,$ so you have the system $$begincasest +u+v=0\4t +3u+2v=5\3t +2u+4v=-4endcases$$ Once you've solved this, as long as none of $t,u,v$ is $0,$ you can simply let $x=frac1t,y=frac1u,z=frac1v.$ If one or more of $t,u,v$ is $0,$ then the system has no solution.
$endgroup$
If the reciprocals are freaking you out, just let $t=frac1x,u=frac1y,v=frac1z,$ so you have the system $$begincasest +u+v=0\4t +3u+2v=5\3t +2u+4v=-4endcases$$ Once you've solved this, as long as none of $t,u,v$ is $0,$ you can simply let $x=frac1t,y=frac1u,z=frac1v.$ If one or more of $t,u,v$ is $0,$ then the system has no solution.
answered Apr 28 at 15:50
Cameron BuieCameron Buie
88k773162
88k773162
add a comment |
add a comment |
$begingroup$
It's much easier to solve the linear system for the reciprocals then take the reciprocal to get the result.
$endgroup$
add a comment |
$begingroup$
It's much easier to solve the linear system for the reciprocals then take the reciprocal to get the result.
$endgroup$
add a comment |
$begingroup$
It's much easier to solve the linear system for the reciprocals then take the reciprocal to get the result.
$endgroup$
It's much easier to solve the linear system for the reciprocals then take the reciprocal to get the result.
answered Apr 28 at 15:45
Matt SamuelMatt Samuel
40k63870
40k63870
add a comment |
add a comment |
$begingroup$
how about this, let:
$$X=frac1x,,Y=frac1y,,Z=frac1z$$
and it is much easier to solve the following:
$$beginpmatrix
1&1&1\
4&3&2\
3&2&4
endpmatrix
beginpmatrix
X\
Y\
Z
endpmatrix=
beginpmatrix
0\5\-4
endpmatrix
$$
$endgroup$
add a comment |
$begingroup$
how about this, let:
$$X=frac1x,,Y=frac1y,,Z=frac1z$$
and it is much easier to solve the following:
$$beginpmatrix
1&1&1\
4&3&2\
3&2&4
endpmatrix
beginpmatrix
X\
Y\
Z
endpmatrix=
beginpmatrix
0\5\-4
endpmatrix
$$
$endgroup$
add a comment |
$begingroup$
how about this, let:
$$X=frac1x,,Y=frac1y,,Z=frac1z$$
and it is much easier to solve the following:
$$beginpmatrix
1&1&1\
4&3&2\
3&2&4
endpmatrix
beginpmatrix
X\
Y\
Z
endpmatrix=
beginpmatrix
0\5\-4
endpmatrix
$$
$endgroup$
how about this, let:
$$X=frac1x,,Y=frac1y,,Z=frac1z$$
and it is much easier to solve the following:
$$beginpmatrix
1&1&1\
4&3&2\
3&2&4
endpmatrix
beginpmatrix
X\
Y\
Z
endpmatrix=
beginpmatrix
0\5\-4
endpmatrix
$$
answered Apr 28 at 15:51
Henry LeeHenry Lee
2,249319
2,249319
add a comment |
add a comment |
$begingroup$
Observe that the system's matrix of the reciprocal of the unknowns is:
$$A=beginpmatrix1&1&1&0\
4&3&2&5\
3&2&4&-4endpmatrixstackrelR_2-4R_1,,R_3-3R_1longrightarrowbeginpmatrix1&1&1&0\
0&-1&-2&5\
0&-1&1&-4endpmatrixstackrelR_3-R_2longrightarrow$$
$$beginpmatrix1&1&1&0\
0&-1&-2&5\
0&0&3&-9endpmatrix$$
Try to finish the exercise now, taking into account that the third column represents $;cfrac 1z;$ , the second $;cfrac1y;$ and the first one $;cfrac1x;$
$endgroup$
2
$begingroup$
There's an error at the 1st step: the third row should be $;0;-1; colorred+1;-4$.
$endgroup$
– Bernard
Apr 28 at 15:57
$begingroup$
@Bernard Good catch, edited. Thanks.
$endgroup$
– DonAntonio
Apr 28 at 18:43
add a comment |
$begingroup$
Observe that the system's matrix of the reciprocal of the unknowns is:
$$A=beginpmatrix1&1&1&0\
4&3&2&5\
3&2&4&-4endpmatrixstackrelR_2-4R_1,,R_3-3R_1longrightarrowbeginpmatrix1&1&1&0\
0&-1&-2&5\
0&-1&1&-4endpmatrixstackrelR_3-R_2longrightarrow$$
$$beginpmatrix1&1&1&0\
0&-1&-2&5\
0&0&3&-9endpmatrix$$
Try to finish the exercise now, taking into account that the third column represents $;cfrac 1z;$ , the second $;cfrac1y;$ and the first one $;cfrac1x;$
$endgroup$
2
$begingroup$
There's an error at the 1st step: the third row should be $;0;-1; colorred+1;-4$.
$endgroup$
– Bernard
Apr 28 at 15:57
$begingroup$
@Bernard Good catch, edited. Thanks.
$endgroup$
– DonAntonio
Apr 28 at 18:43
add a comment |
$begingroup$
Observe that the system's matrix of the reciprocal of the unknowns is:
$$A=beginpmatrix1&1&1&0\
4&3&2&5\
3&2&4&-4endpmatrixstackrelR_2-4R_1,,R_3-3R_1longrightarrowbeginpmatrix1&1&1&0\
0&-1&-2&5\
0&-1&1&-4endpmatrixstackrelR_3-R_2longrightarrow$$
$$beginpmatrix1&1&1&0\
0&-1&-2&5\
0&0&3&-9endpmatrix$$
Try to finish the exercise now, taking into account that the third column represents $;cfrac 1z;$ , the second $;cfrac1y;$ and the first one $;cfrac1x;$
$endgroup$
Observe that the system's matrix of the reciprocal of the unknowns is:
$$A=beginpmatrix1&1&1&0\
4&3&2&5\
3&2&4&-4endpmatrixstackrelR_2-4R_1,,R_3-3R_1longrightarrowbeginpmatrix1&1&1&0\
0&-1&-2&5\
0&-1&1&-4endpmatrixstackrelR_3-R_2longrightarrow$$
$$beginpmatrix1&1&1&0\
0&-1&-2&5\
0&0&3&-9endpmatrix$$
Try to finish the exercise now, taking into account that the third column represents $;cfrac 1z;$ , the second $;cfrac1y;$ and the first one $;cfrac1x;$
edited Apr 28 at 18:43
answered Apr 28 at 15:51
DonAntonioDonAntonio
180k1496234
180k1496234
2
$begingroup$
There's an error at the 1st step: the third row should be $;0;-1; colorred+1;-4$.
$endgroup$
– Bernard
Apr 28 at 15:57
$begingroup$
@Bernard Good catch, edited. Thanks.
$endgroup$
– DonAntonio
Apr 28 at 18:43
add a comment |
2
$begingroup$
There's an error at the 1st step: the third row should be $;0;-1; colorred+1;-4$.
$endgroup$
– Bernard
Apr 28 at 15:57
$begingroup$
@Bernard Good catch, edited. Thanks.
$endgroup$
– DonAntonio
Apr 28 at 18:43
2
2
$begingroup$
There's an error at the 1st step: the third row should be $;0;-1; colorred+1;-4$.
$endgroup$
– Bernard
Apr 28 at 15:57
$begingroup$
There's an error at the 1st step: the third row should be $;0;-1; colorred+1;-4$.
$endgroup$
– Bernard
Apr 28 at 15:57
$begingroup$
@Bernard Good catch, edited. Thanks.
$endgroup$
– DonAntonio
Apr 28 at 18:43
$begingroup$
@Bernard Good catch, edited. Thanks.
$endgroup$
– DonAntonio
Apr 28 at 18:43
add a comment |
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.
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%2f3205742%2fsolving-a-linear-system-of-reciprocals%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