Mistake in solving an equation involving a square root
$begingroup$
I want to solve $2x = sqrt{x+3}$, which I have tried as below:
$$begin{equation}
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
left(x - frac12 right)^2 = 1 \
x = frac32 , -frac12
end{equation}$$
This, however, is incorrect.
What is wrong with my solution?
algebra-precalculus quadratics
$endgroup$
add a comment |
$begingroup$
I want to solve $2x = sqrt{x+3}$, which I have tried as below:
$$begin{equation}
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
left(x - frac12 right)^2 = 1 \
x = frac32 , -frac12
end{equation}$$
This, however, is incorrect.
What is wrong with my solution?
algebra-precalculus quadratics
$endgroup$
10
$begingroup$
+1 for showing your full working. Keep up the good work and I hope my answer is satisfactory!
$endgroup$
– Hugh Entwistle
Dec 26 '18 at 12:23
add a comment |
$begingroup$
I want to solve $2x = sqrt{x+3}$, which I have tried as below:
$$begin{equation}
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
left(x - frac12 right)^2 = 1 \
x = frac32 , -frac12
end{equation}$$
This, however, is incorrect.
What is wrong with my solution?
algebra-precalculus quadratics
$endgroup$
I want to solve $2x = sqrt{x+3}$, which I have tried as below:
$$begin{equation}
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
left(x - frac12 right)^2 = 1 \
x = frac32 , -frac12
end{equation}$$
This, however, is incorrect.
What is wrong with my solution?
algebra-precalculus quadratics
algebra-precalculus quadratics
edited Dec 26 '18 at 8:50
Eevee Trainer
10.4k31742
10.4k31742
asked Dec 26 '18 at 8:32
Hojjatollah Bakhtiyari KiyaHojjatollah Bakhtiyari Kiya
1197
1197
10
$begingroup$
+1 for showing your full working. Keep up the good work and I hope my answer is satisfactory!
$endgroup$
– Hugh Entwistle
Dec 26 '18 at 12:23
add a comment |
10
$begingroup$
+1 for showing your full working. Keep up the good work and I hope my answer is satisfactory!
$endgroup$
– Hugh Entwistle
Dec 26 '18 at 12:23
10
10
$begingroup$
+1 for showing your full working. Keep up the good work and I hope my answer is satisfactory!
$endgroup$
– Hugh Entwistle
Dec 26 '18 at 12:23
$begingroup$
+1 for showing your full working. Keep up the good work and I hope my answer is satisfactory!
$endgroup$
– Hugh Entwistle
Dec 26 '18 at 12:23
add a comment |
5 Answers
5
active
oldest
votes
$begingroup$
You made a mistake when completing the square.
$$x^2-frac{1}{4}x = frac{3}{4} color{red}{impliesleft(x-frac{1}{2}right)^2 = 1}$$
This is easy to spot since $(apm b)^2 = a^2pm2ab+b^2$, which means the coefficient of the linear term becomes $-2left(frac{1}{2}right) = -1 color{red}{neq -frac{1}{4}}$. This means something isn’t correct...
Note that the equation is rewritten such that $a = 1$, so you need to add $left(frac{b}{2}right)^2$ to both sides and factor. (In other words, divide the coefficient of the linear term $x$ by $2$ and square the result, which will then be added to both sides.)
$$b = -frac{1}{4} implies left(frac{b}{2}right)^2 implies frac{1}{64}$$
Which gets
$$x^2-frac{1}{4}x+color{blue}{frac{1}{64}} = frac{3}{4}+color{blue}{frac{1}{64}}$$
Factoring the perfect square trinomial yields
$$left(x-frac{1}{8}right)^2 = frac{49}{64}$$
And you can probably take it on from here.
Edit: As it has been noted in the other answers (should have clarified this as well), squaring introduces the possibility of extraneous solutions, so always check your solutions by plugging in the values obtained in the original equation. By squaring, you’re solving
$$4x^2 = x+3$$
which is actually
$$2x = color{blue}{pm}sqrt{x+3}$$
so your negative solution will satisfy this new equation but not the original one, since that one is
$$2x = sqrt{x+3}$$
with no $pm$.
$endgroup$
add a comment |
$begingroup$
From
$$x^2-frac{1}{4}x=frac{3}{4}$$ to $$left(x-frac{1}{2} right)^2=1$$ you have not completed the square correctly.
It should instead be
$$left(x-frac{1}{8} right)^2-frac{1}{64}=frac{3}{4}$$
Additionally please note that, if we were to proceed with your original solution as 'correct', one of your solutions does in fact not work. When we originally square both sides we have, in a sense, 'modified' the question -- allowing for negative solutions for $x$. Your original solution of $x=-frac{1}{2}$ does not satisfy the original equation - we must be mindful to check our solutions in these situations.
$endgroup$
4
$begingroup$
The OP's answer was also incorrect because one of his/her solutions was extraneous; it might be a good idea to add a warning about that to your answer as well.
$endgroup$
– Frpzzd
Dec 26 '18 at 22:22
$begingroup$
@Frpzzd I have edited my answer to reflect your concern!
$endgroup$
– Hugh Entwistle
Dec 30 '18 at 3:40
add a comment |
$begingroup$
Two mistakes:
1) mistake in completing the square. Remember, divide the coefficient of the $x$ term by two, not multiply. You should've got: $(x-frac 18)^2 = frac 34 + frac{1}{64}$.
2) when you square, you run the risk of introducing "redundant roots". This is because when you solve by squaring, you're really solving $2x = pmsqrt{x+3}$. So put your solutions back into the original to see which one(s) satisfy the original equation, and discard the rest. This applies whenever you raise both sides of an equation to any even power.
$endgroup$
3
$begingroup$
This is the only completely correct answer.
$endgroup$
– daviewales
Dec 27 '18 at 0:14
$begingroup$
Yep, this answer is concise, complete, and accurate. Wish that it was the accepted one.
$endgroup$
– JonathanZ
Dec 27 '18 at 16:57
add a comment |
$begingroup$
$$begin{equation}
4x^2 - x -3 = 0 \
(4x + 3)(x - 1) = 0 \
x = -frac34 , 1
end{equation}$$
$endgroup$
$begingroup$
Upvoting, although it would be nice to see a little explanation given the level of the asker.
$endgroup$
– user1717828
Dec 26 '18 at 14:37
2
$begingroup$
How can $x$ be negative if $2x$ is equal to a square root?
$endgroup$
– Jon
Dec 26 '18 at 17:44
$begingroup$
@Jon Square roots have $2$ solutions, a positive and a negative.
$endgroup$
– stuart stevenson
Dec 26 '18 at 21:49
$begingroup$
These are the two solutions of the quadratic equation $4x^2-x-3=0$. Only one of these is the solution to $2x = sqrt{x+3}$. See this question.
$endgroup$
– daviewales
Dec 27 '18 at 0:13
1
$begingroup$
'In the UK, where I did my degree in Maths, a square root is a square root and has 2 solutions.' Could you provide a reference for this. I highly doubt that this is generally true. (What's sometimes done, though mostly not in the context relevant here, is that the symbol denotes one unspecified root. Yet it won't denote both.)
$endgroup$
– quid♦
Dec 27 '18 at 15:36
|
show 9 more comments
$begingroup$
$require{cancel}$Additional details in $color{blue}{blue}$. Important detail in $color{green}{green}$. Mistakes in $color{red}{cancel{text{canceled red}}}$. Corrections in $color{purple}{purple}$.
$begin{equation}
color{blue}{2x = sqrt{x+3}}color{green}{ge 0}\
color{blue}{4x^2 = x+3}color{green}{text{!AND!} xge 0}\
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
color{blue}{x^2 -2cdotfrac 18=frac 34}\
color{blue}{x^2 -2cdotfrac 18 +(frac 18)^2=frac 34+frac 1{64}}\
color{red}{cancel{(x - frac12 )^2 = 1}}color{purple}{(x - frac18)^2 = frac {49}{64}} \
color{blue}{x-frac 18=pm frac 78}\
color{red}{cancel{x = frac32 , -frac12}}color{purple}{x = 1 , -frac34}color{green}{text{!AND!} xge 0}\
color{purple}{x = 1}\
end{equation}$
$endgroup$
add a comment |
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
});
}
});
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%2f3052746%2fmistake-in-solving-an-equation-involving-a-square-root%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
You made a mistake when completing the square.
$$x^2-frac{1}{4}x = frac{3}{4} color{red}{impliesleft(x-frac{1}{2}right)^2 = 1}$$
This is easy to spot since $(apm b)^2 = a^2pm2ab+b^2$, which means the coefficient of the linear term becomes $-2left(frac{1}{2}right) = -1 color{red}{neq -frac{1}{4}}$. This means something isn’t correct...
Note that the equation is rewritten such that $a = 1$, so you need to add $left(frac{b}{2}right)^2$ to both sides and factor. (In other words, divide the coefficient of the linear term $x$ by $2$ and square the result, which will then be added to both sides.)
$$b = -frac{1}{4} implies left(frac{b}{2}right)^2 implies frac{1}{64}$$
Which gets
$$x^2-frac{1}{4}x+color{blue}{frac{1}{64}} = frac{3}{4}+color{blue}{frac{1}{64}}$$
Factoring the perfect square trinomial yields
$$left(x-frac{1}{8}right)^2 = frac{49}{64}$$
And you can probably take it on from here.
Edit: As it has been noted in the other answers (should have clarified this as well), squaring introduces the possibility of extraneous solutions, so always check your solutions by plugging in the values obtained in the original equation. By squaring, you’re solving
$$4x^2 = x+3$$
which is actually
$$2x = color{blue}{pm}sqrt{x+3}$$
so your negative solution will satisfy this new equation but not the original one, since that one is
$$2x = sqrt{x+3}$$
with no $pm$.
$endgroup$
add a comment |
$begingroup$
You made a mistake when completing the square.
$$x^2-frac{1}{4}x = frac{3}{4} color{red}{impliesleft(x-frac{1}{2}right)^2 = 1}$$
This is easy to spot since $(apm b)^2 = a^2pm2ab+b^2$, which means the coefficient of the linear term becomes $-2left(frac{1}{2}right) = -1 color{red}{neq -frac{1}{4}}$. This means something isn’t correct...
Note that the equation is rewritten such that $a = 1$, so you need to add $left(frac{b}{2}right)^2$ to both sides and factor. (In other words, divide the coefficient of the linear term $x$ by $2$ and square the result, which will then be added to both sides.)
$$b = -frac{1}{4} implies left(frac{b}{2}right)^2 implies frac{1}{64}$$
Which gets
$$x^2-frac{1}{4}x+color{blue}{frac{1}{64}} = frac{3}{4}+color{blue}{frac{1}{64}}$$
Factoring the perfect square trinomial yields
$$left(x-frac{1}{8}right)^2 = frac{49}{64}$$
And you can probably take it on from here.
Edit: As it has been noted in the other answers (should have clarified this as well), squaring introduces the possibility of extraneous solutions, so always check your solutions by plugging in the values obtained in the original equation. By squaring, you’re solving
$$4x^2 = x+3$$
which is actually
$$2x = color{blue}{pm}sqrt{x+3}$$
so your negative solution will satisfy this new equation but not the original one, since that one is
$$2x = sqrt{x+3}$$
with no $pm$.
$endgroup$
add a comment |
$begingroup$
You made a mistake when completing the square.
$$x^2-frac{1}{4}x = frac{3}{4} color{red}{impliesleft(x-frac{1}{2}right)^2 = 1}$$
This is easy to spot since $(apm b)^2 = a^2pm2ab+b^2$, which means the coefficient of the linear term becomes $-2left(frac{1}{2}right) = -1 color{red}{neq -frac{1}{4}}$. This means something isn’t correct...
Note that the equation is rewritten such that $a = 1$, so you need to add $left(frac{b}{2}right)^2$ to both sides and factor. (In other words, divide the coefficient of the linear term $x$ by $2$ and square the result, which will then be added to both sides.)
$$b = -frac{1}{4} implies left(frac{b}{2}right)^2 implies frac{1}{64}$$
Which gets
$$x^2-frac{1}{4}x+color{blue}{frac{1}{64}} = frac{3}{4}+color{blue}{frac{1}{64}}$$
Factoring the perfect square trinomial yields
$$left(x-frac{1}{8}right)^2 = frac{49}{64}$$
And you can probably take it on from here.
Edit: As it has been noted in the other answers (should have clarified this as well), squaring introduces the possibility of extraneous solutions, so always check your solutions by plugging in the values obtained in the original equation. By squaring, you’re solving
$$4x^2 = x+3$$
which is actually
$$2x = color{blue}{pm}sqrt{x+3}$$
so your negative solution will satisfy this new equation but not the original one, since that one is
$$2x = sqrt{x+3}$$
with no $pm$.
$endgroup$
You made a mistake when completing the square.
$$x^2-frac{1}{4}x = frac{3}{4} color{red}{impliesleft(x-frac{1}{2}right)^2 = 1}$$
This is easy to spot since $(apm b)^2 = a^2pm2ab+b^2$, which means the coefficient of the linear term becomes $-2left(frac{1}{2}right) = -1 color{red}{neq -frac{1}{4}}$. This means something isn’t correct...
Note that the equation is rewritten such that $a = 1$, so you need to add $left(frac{b}{2}right)^2$ to both sides and factor. (In other words, divide the coefficient of the linear term $x$ by $2$ and square the result, which will then be added to both sides.)
$$b = -frac{1}{4} implies left(frac{b}{2}right)^2 implies frac{1}{64}$$
Which gets
$$x^2-frac{1}{4}x+color{blue}{frac{1}{64}} = frac{3}{4}+color{blue}{frac{1}{64}}$$
Factoring the perfect square trinomial yields
$$left(x-frac{1}{8}right)^2 = frac{49}{64}$$
And you can probably take it on from here.
Edit: As it has been noted in the other answers (should have clarified this as well), squaring introduces the possibility of extraneous solutions, so always check your solutions by plugging in the values obtained in the original equation. By squaring, you’re solving
$$4x^2 = x+3$$
which is actually
$$2x = color{blue}{pm}sqrt{x+3}$$
so your negative solution will satisfy this new equation but not the original one, since that one is
$$2x = sqrt{x+3}$$
with no $pm$.
edited Dec 27 '18 at 6:41
answered Dec 26 '18 at 8:45
KM101KM101
6,0861525
6,0861525
add a comment |
add a comment |
$begingroup$
From
$$x^2-frac{1}{4}x=frac{3}{4}$$ to $$left(x-frac{1}{2} right)^2=1$$ you have not completed the square correctly.
It should instead be
$$left(x-frac{1}{8} right)^2-frac{1}{64}=frac{3}{4}$$
Additionally please note that, if we were to proceed with your original solution as 'correct', one of your solutions does in fact not work. When we originally square both sides we have, in a sense, 'modified' the question -- allowing for negative solutions for $x$. Your original solution of $x=-frac{1}{2}$ does not satisfy the original equation - we must be mindful to check our solutions in these situations.
$endgroup$
4
$begingroup$
The OP's answer was also incorrect because one of his/her solutions was extraneous; it might be a good idea to add a warning about that to your answer as well.
$endgroup$
– Frpzzd
Dec 26 '18 at 22:22
$begingroup$
@Frpzzd I have edited my answer to reflect your concern!
$endgroup$
– Hugh Entwistle
Dec 30 '18 at 3:40
add a comment |
$begingroup$
From
$$x^2-frac{1}{4}x=frac{3}{4}$$ to $$left(x-frac{1}{2} right)^2=1$$ you have not completed the square correctly.
It should instead be
$$left(x-frac{1}{8} right)^2-frac{1}{64}=frac{3}{4}$$
Additionally please note that, if we were to proceed with your original solution as 'correct', one of your solutions does in fact not work. When we originally square both sides we have, in a sense, 'modified' the question -- allowing for negative solutions for $x$. Your original solution of $x=-frac{1}{2}$ does not satisfy the original equation - we must be mindful to check our solutions in these situations.
$endgroup$
4
$begingroup$
The OP's answer was also incorrect because one of his/her solutions was extraneous; it might be a good idea to add a warning about that to your answer as well.
$endgroup$
– Frpzzd
Dec 26 '18 at 22:22
$begingroup$
@Frpzzd I have edited my answer to reflect your concern!
$endgroup$
– Hugh Entwistle
Dec 30 '18 at 3:40
add a comment |
$begingroup$
From
$$x^2-frac{1}{4}x=frac{3}{4}$$ to $$left(x-frac{1}{2} right)^2=1$$ you have not completed the square correctly.
It should instead be
$$left(x-frac{1}{8} right)^2-frac{1}{64}=frac{3}{4}$$
Additionally please note that, if we were to proceed with your original solution as 'correct', one of your solutions does in fact not work. When we originally square both sides we have, in a sense, 'modified' the question -- allowing for negative solutions for $x$. Your original solution of $x=-frac{1}{2}$ does not satisfy the original equation - we must be mindful to check our solutions in these situations.
$endgroup$
From
$$x^2-frac{1}{4}x=frac{3}{4}$$ to $$left(x-frac{1}{2} right)^2=1$$ you have not completed the square correctly.
It should instead be
$$left(x-frac{1}{8} right)^2-frac{1}{64}=frac{3}{4}$$
Additionally please note that, if we were to proceed with your original solution as 'correct', one of your solutions does in fact not work. When we originally square both sides we have, in a sense, 'modified' the question -- allowing for negative solutions for $x$. Your original solution of $x=-frac{1}{2}$ does not satisfy the original equation - we must be mindful to check our solutions in these situations.
edited Dec 30 '18 at 3:39
answered Dec 26 '18 at 8:37
Hugh EntwistleHugh Entwistle
871217
871217
4
$begingroup$
The OP's answer was also incorrect because one of his/her solutions was extraneous; it might be a good idea to add a warning about that to your answer as well.
$endgroup$
– Frpzzd
Dec 26 '18 at 22:22
$begingroup$
@Frpzzd I have edited my answer to reflect your concern!
$endgroup$
– Hugh Entwistle
Dec 30 '18 at 3:40
add a comment |
4
$begingroup$
The OP's answer was also incorrect because one of his/her solutions was extraneous; it might be a good idea to add a warning about that to your answer as well.
$endgroup$
– Frpzzd
Dec 26 '18 at 22:22
$begingroup$
@Frpzzd I have edited my answer to reflect your concern!
$endgroup$
– Hugh Entwistle
Dec 30 '18 at 3:40
4
4
$begingroup$
The OP's answer was also incorrect because one of his/her solutions was extraneous; it might be a good idea to add a warning about that to your answer as well.
$endgroup$
– Frpzzd
Dec 26 '18 at 22:22
$begingroup$
The OP's answer was also incorrect because one of his/her solutions was extraneous; it might be a good idea to add a warning about that to your answer as well.
$endgroup$
– Frpzzd
Dec 26 '18 at 22:22
$begingroup$
@Frpzzd I have edited my answer to reflect your concern!
$endgroup$
– Hugh Entwistle
Dec 30 '18 at 3:40
$begingroup$
@Frpzzd I have edited my answer to reflect your concern!
$endgroup$
– Hugh Entwistle
Dec 30 '18 at 3:40
add a comment |
$begingroup$
Two mistakes:
1) mistake in completing the square. Remember, divide the coefficient of the $x$ term by two, not multiply. You should've got: $(x-frac 18)^2 = frac 34 + frac{1}{64}$.
2) when you square, you run the risk of introducing "redundant roots". This is because when you solve by squaring, you're really solving $2x = pmsqrt{x+3}$. So put your solutions back into the original to see which one(s) satisfy the original equation, and discard the rest. This applies whenever you raise both sides of an equation to any even power.
$endgroup$
3
$begingroup$
This is the only completely correct answer.
$endgroup$
– daviewales
Dec 27 '18 at 0:14
$begingroup$
Yep, this answer is concise, complete, and accurate. Wish that it was the accepted one.
$endgroup$
– JonathanZ
Dec 27 '18 at 16:57
add a comment |
$begingroup$
Two mistakes:
1) mistake in completing the square. Remember, divide the coefficient of the $x$ term by two, not multiply. You should've got: $(x-frac 18)^2 = frac 34 + frac{1}{64}$.
2) when you square, you run the risk of introducing "redundant roots". This is because when you solve by squaring, you're really solving $2x = pmsqrt{x+3}$. So put your solutions back into the original to see which one(s) satisfy the original equation, and discard the rest. This applies whenever you raise both sides of an equation to any even power.
$endgroup$
3
$begingroup$
This is the only completely correct answer.
$endgroup$
– daviewales
Dec 27 '18 at 0:14
$begingroup$
Yep, this answer is concise, complete, and accurate. Wish that it was the accepted one.
$endgroup$
– JonathanZ
Dec 27 '18 at 16:57
add a comment |
$begingroup$
Two mistakes:
1) mistake in completing the square. Remember, divide the coefficient of the $x$ term by two, not multiply. You should've got: $(x-frac 18)^2 = frac 34 + frac{1}{64}$.
2) when you square, you run the risk of introducing "redundant roots". This is because when you solve by squaring, you're really solving $2x = pmsqrt{x+3}$. So put your solutions back into the original to see which one(s) satisfy the original equation, and discard the rest. This applies whenever you raise both sides of an equation to any even power.
$endgroup$
Two mistakes:
1) mistake in completing the square. Remember, divide the coefficient of the $x$ term by two, not multiply. You should've got: $(x-frac 18)^2 = frac 34 + frac{1}{64}$.
2) when you square, you run the risk of introducing "redundant roots". This is because when you solve by squaring, you're really solving $2x = pmsqrt{x+3}$. So put your solutions back into the original to see which one(s) satisfy the original equation, and discard the rest. This applies whenever you raise both sides of an equation to any even power.
answered Dec 26 '18 at 8:44
DeepakDeepak
18k11640
18k11640
3
$begingroup$
This is the only completely correct answer.
$endgroup$
– daviewales
Dec 27 '18 at 0:14
$begingroup$
Yep, this answer is concise, complete, and accurate. Wish that it was the accepted one.
$endgroup$
– JonathanZ
Dec 27 '18 at 16:57
add a comment |
3
$begingroup$
This is the only completely correct answer.
$endgroup$
– daviewales
Dec 27 '18 at 0:14
$begingroup$
Yep, this answer is concise, complete, and accurate. Wish that it was the accepted one.
$endgroup$
– JonathanZ
Dec 27 '18 at 16:57
3
3
$begingroup$
This is the only completely correct answer.
$endgroup$
– daviewales
Dec 27 '18 at 0:14
$begingroup$
This is the only completely correct answer.
$endgroup$
– daviewales
Dec 27 '18 at 0:14
$begingroup$
Yep, this answer is concise, complete, and accurate. Wish that it was the accepted one.
$endgroup$
– JonathanZ
Dec 27 '18 at 16:57
$begingroup$
Yep, this answer is concise, complete, and accurate. Wish that it was the accepted one.
$endgroup$
– JonathanZ
Dec 27 '18 at 16:57
add a comment |
$begingroup$
$$begin{equation}
4x^2 - x -3 = 0 \
(4x + 3)(x - 1) = 0 \
x = -frac34 , 1
end{equation}$$
$endgroup$
$begingroup$
Upvoting, although it would be nice to see a little explanation given the level of the asker.
$endgroup$
– user1717828
Dec 26 '18 at 14:37
2
$begingroup$
How can $x$ be negative if $2x$ is equal to a square root?
$endgroup$
– Jon
Dec 26 '18 at 17:44
$begingroup$
@Jon Square roots have $2$ solutions, a positive and a negative.
$endgroup$
– stuart stevenson
Dec 26 '18 at 21:49
$begingroup$
These are the two solutions of the quadratic equation $4x^2-x-3=0$. Only one of these is the solution to $2x = sqrt{x+3}$. See this question.
$endgroup$
– daviewales
Dec 27 '18 at 0:13
1
$begingroup$
'In the UK, where I did my degree in Maths, a square root is a square root and has 2 solutions.' Could you provide a reference for this. I highly doubt that this is generally true. (What's sometimes done, though mostly not in the context relevant here, is that the symbol denotes one unspecified root. Yet it won't denote both.)
$endgroup$
– quid♦
Dec 27 '18 at 15:36
|
show 9 more comments
$begingroup$
$$begin{equation}
4x^2 - x -3 = 0 \
(4x + 3)(x - 1) = 0 \
x = -frac34 , 1
end{equation}$$
$endgroup$
$begingroup$
Upvoting, although it would be nice to see a little explanation given the level of the asker.
$endgroup$
– user1717828
Dec 26 '18 at 14:37
2
$begingroup$
How can $x$ be negative if $2x$ is equal to a square root?
$endgroup$
– Jon
Dec 26 '18 at 17:44
$begingroup$
@Jon Square roots have $2$ solutions, a positive and a negative.
$endgroup$
– stuart stevenson
Dec 26 '18 at 21:49
$begingroup$
These are the two solutions of the quadratic equation $4x^2-x-3=0$. Only one of these is the solution to $2x = sqrt{x+3}$. See this question.
$endgroup$
– daviewales
Dec 27 '18 at 0:13
1
$begingroup$
'In the UK, where I did my degree in Maths, a square root is a square root and has 2 solutions.' Could you provide a reference for this. I highly doubt that this is generally true. (What's sometimes done, though mostly not in the context relevant here, is that the symbol denotes one unspecified root. Yet it won't denote both.)
$endgroup$
– quid♦
Dec 27 '18 at 15:36
|
show 9 more comments
$begingroup$
$$begin{equation}
4x^2 - x -3 = 0 \
(4x + 3)(x - 1) = 0 \
x = -frac34 , 1
end{equation}$$
$endgroup$
$$begin{equation}
4x^2 - x -3 = 0 \
(4x + 3)(x - 1) = 0 \
x = -frac34 , 1
end{equation}$$
answered Dec 26 '18 at 12:55
stuart stevensonstuart stevenson
4481314
4481314
$begingroup$
Upvoting, although it would be nice to see a little explanation given the level of the asker.
$endgroup$
– user1717828
Dec 26 '18 at 14:37
2
$begingroup$
How can $x$ be negative if $2x$ is equal to a square root?
$endgroup$
– Jon
Dec 26 '18 at 17:44
$begingroup$
@Jon Square roots have $2$ solutions, a positive and a negative.
$endgroup$
– stuart stevenson
Dec 26 '18 at 21:49
$begingroup$
These are the two solutions of the quadratic equation $4x^2-x-3=0$. Only one of these is the solution to $2x = sqrt{x+3}$. See this question.
$endgroup$
– daviewales
Dec 27 '18 at 0:13
1
$begingroup$
'In the UK, where I did my degree in Maths, a square root is a square root and has 2 solutions.' Could you provide a reference for this. I highly doubt that this is generally true. (What's sometimes done, though mostly not in the context relevant here, is that the symbol denotes one unspecified root. Yet it won't denote both.)
$endgroup$
– quid♦
Dec 27 '18 at 15:36
|
show 9 more comments
$begingroup$
Upvoting, although it would be nice to see a little explanation given the level of the asker.
$endgroup$
– user1717828
Dec 26 '18 at 14:37
2
$begingroup$
How can $x$ be negative if $2x$ is equal to a square root?
$endgroup$
– Jon
Dec 26 '18 at 17:44
$begingroup$
@Jon Square roots have $2$ solutions, a positive and a negative.
$endgroup$
– stuart stevenson
Dec 26 '18 at 21:49
$begingroup$
These are the two solutions of the quadratic equation $4x^2-x-3=0$. Only one of these is the solution to $2x = sqrt{x+3}$. See this question.
$endgroup$
– daviewales
Dec 27 '18 at 0:13
1
$begingroup$
'In the UK, where I did my degree in Maths, a square root is a square root and has 2 solutions.' Could you provide a reference for this. I highly doubt that this is generally true. (What's sometimes done, though mostly not in the context relevant here, is that the symbol denotes one unspecified root. Yet it won't denote both.)
$endgroup$
– quid♦
Dec 27 '18 at 15:36
$begingroup$
Upvoting, although it would be nice to see a little explanation given the level of the asker.
$endgroup$
– user1717828
Dec 26 '18 at 14:37
$begingroup$
Upvoting, although it would be nice to see a little explanation given the level of the asker.
$endgroup$
– user1717828
Dec 26 '18 at 14:37
2
2
$begingroup$
How can $x$ be negative if $2x$ is equal to a square root?
$endgroup$
– Jon
Dec 26 '18 at 17:44
$begingroup$
How can $x$ be negative if $2x$ is equal to a square root?
$endgroup$
– Jon
Dec 26 '18 at 17:44
$begingroup$
@Jon Square roots have $2$ solutions, a positive and a negative.
$endgroup$
– stuart stevenson
Dec 26 '18 at 21:49
$begingroup$
@Jon Square roots have $2$ solutions, a positive and a negative.
$endgroup$
– stuart stevenson
Dec 26 '18 at 21:49
$begingroup$
These are the two solutions of the quadratic equation $4x^2-x-3=0$. Only one of these is the solution to $2x = sqrt{x+3}$. See this question.
$endgroup$
– daviewales
Dec 27 '18 at 0:13
$begingroup$
These are the two solutions of the quadratic equation $4x^2-x-3=0$. Only one of these is the solution to $2x = sqrt{x+3}$. See this question.
$endgroup$
– daviewales
Dec 27 '18 at 0:13
1
1
$begingroup$
'In the UK, where I did my degree in Maths, a square root is a square root and has 2 solutions.' Could you provide a reference for this. I highly doubt that this is generally true. (What's sometimes done, though mostly not in the context relevant here, is that the symbol denotes one unspecified root. Yet it won't denote both.)
$endgroup$
– quid♦
Dec 27 '18 at 15:36
$begingroup$
'In the UK, where I did my degree in Maths, a square root is a square root and has 2 solutions.' Could you provide a reference for this. I highly doubt that this is generally true. (What's sometimes done, though mostly not in the context relevant here, is that the symbol denotes one unspecified root. Yet it won't denote both.)
$endgroup$
– quid♦
Dec 27 '18 at 15:36
|
show 9 more comments
$begingroup$
$require{cancel}$Additional details in $color{blue}{blue}$. Important detail in $color{green}{green}$. Mistakes in $color{red}{cancel{text{canceled red}}}$. Corrections in $color{purple}{purple}$.
$begin{equation}
color{blue}{2x = sqrt{x+3}}color{green}{ge 0}\
color{blue}{4x^2 = x+3}color{green}{text{!AND!} xge 0}\
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
color{blue}{x^2 -2cdotfrac 18=frac 34}\
color{blue}{x^2 -2cdotfrac 18 +(frac 18)^2=frac 34+frac 1{64}}\
color{red}{cancel{(x - frac12 )^2 = 1}}color{purple}{(x - frac18)^2 = frac {49}{64}} \
color{blue}{x-frac 18=pm frac 78}\
color{red}{cancel{x = frac32 , -frac12}}color{purple}{x = 1 , -frac34}color{green}{text{!AND!} xge 0}\
color{purple}{x = 1}\
end{equation}$
$endgroup$
add a comment |
$begingroup$
$require{cancel}$Additional details in $color{blue}{blue}$. Important detail in $color{green}{green}$. Mistakes in $color{red}{cancel{text{canceled red}}}$. Corrections in $color{purple}{purple}$.
$begin{equation}
color{blue}{2x = sqrt{x+3}}color{green}{ge 0}\
color{blue}{4x^2 = x+3}color{green}{text{!AND!} xge 0}\
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
color{blue}{x^2 -2cdotfrac 18=frac 34}\
color{blue}{x^2 -2cdotfrac 18 +(frac 18)^2=frac 34+frac 1{64}}\
color{red}{cancel{(x - frac12 )^2 = 1}}color{purple}{(x - frac18)^2 = frac {49}{64}} \
color{blue}{x-frac 18=pm frac 78}\
color{red}{cancel{x = frac32 , -frac12}}color{purple}{x = 1 , -frac34}color{green}{text{!AND!} xge 0}\
color{purple}{x = 1}\
end{equation}$
$endgroup$
add a comment |
$begingroup$
$require{cancel}$Additional details in $color{blue}{blue}$. Important detail in $color{green}{green}$. Mistakes in $color{red}{cancel{text{canceled red}}}$. Corrections in $color{purple}{purple}$.
$begin{equation}
color{blue}{2x = sqrt{x+3}}color{green}{ge 0}\
color{blue}{4x^2 = x+3}color{green}{text{!AND!} xge 0}\
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
color{blue}{x^2 -2cdotfrac 18=frac 34}\
color{blue}{x^2 -2cdotfrac 18 +(frac 18)^2=frac 34+frac 1{64}}\
color{red}{cancel{(x - frac12 )^2 = 1}}color{purple}{(x - frac18)^2 = frac {49}{64}} \
color{blue}{x-frac 18=pm frac 78}\
color{red}{cancel{x = frac32 , -frac12}}color{purple}{x = 1 , -frac34}color{green}{text{!AND!} xge 0}\
color{purple}{x = 1}\
end{equation}$
$endgroup$
$require{cancel}$Additional details in $color{blue}{blue}$. Important detail in $color{green}{green}$. Mistakes in $color{red}{cancel{text{canceled red}}}$. Corrections in $color{purple}{purple}$.
$begin{equation}
color{blue}{2x = sqrt{x+3}}color{green}{ge 0}\
color{blue}{4x^2 = x+3}color{green}{text{!AND!} xge 0}\
4x^2 - x -3 = 0 \
x^2 - frac14 x - frac34 = 0 \
x^2 - frac14x = frac34 \
color{blue}{x^2 -2cdotfrac 18=frac 34}\
color{blue}{x^2 -2cdotfrac 18 +(frac 18)^2=frac 34+frac 1{64}}\
color{red}{cancel{(x - frac12 )^2 = 1}}color{purple}{(x - frac18)^2 = frac {49}{64}} \
color{blue}{x-frac 18=pm frac 78}\
color{red}{cancel{x = frac32 , -frac12}}color{purple}{x = 1 , -frac34}color{green}{text{!AND!} xge 0}\
color{purple}{x = 1}\
end{equation}$
edited Dec 27 '18 at 7:27
answered Dec 27 '18 at 7:18
fleabloodfleablood
74k22891
74k22891
add a comment |
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%2f3052746%2fmistake-in-solving-an-equation-involving-a-square-root%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
10
$begingroup$
+1 for showing your full working. Keep up the good work and I hope my answer is satisfactory!
$endgroup$
– Hugh Entwistle
Dec 26 '18 at 12:23