How to make mirrored parabola
I try to figure it out how to make mirror of the parabola to some line.
For example like that:
In that example my original parabola is: $f_p(x) = x^2 $ - (red line)
My mirror center line is: $f_c(x) = x $ - (green line)
And my mirrored parabola is: $f_m(x) = sqrt { x } $ - (blue line - of course it's just half of parabola but it's enough for me)
But what in case if my mirror center line is for example: $f_c(x) = 0.3x$
And my parabola that I want to mirror is more complicated like: $f_p(x) = ax^2+bx+c$
How to make mirrored parabola to such line (just for remind: half of parabola would be great enough for me).
For any help thanks in advance.
geometry conic-sections
add a comment |
I try to figure it out how to make mirror of the parabola to some line.
For example like that:
In that example my original parabola is: $f_p(x) = x^2 $ - (red line)
My mirror center line is: $f_c(x) = x $ - (green line)
And my mirrored parabola is: $f_m(x) = sqrt { x } $ - (blue line - of course it's just half of parabola but it's enough for me)
But what in case if my mirror center line is for example: $f_c(x) = 0.3x$
And my parabola that I want to mirror is more complicated like: $f_p(x) = ax^2+bx+c$
How to make mirrored parabola to such line (just for remind: half of parabola would be great enough for me).
For any help thanks in advance.
geometry conic-sections
1
Notice that $x mapsto sqrt{x}$ may locally look like the mirrored parabola, but it's actually not. The mirrored parabola is given by $y^2 = x$.
– Viktor Glombik
Nov 27 '18 at 22:42
1
The only reflections that will result in a function of $x$ are those in vertical lines. For reflections in arbitrary lines, you’ll need to use an implicit equation $Ax^2+Bxy+Cy^2+Dx+Ey+F=0$.
– amd
Nov 27 '18 at 23:07
add a comment |
I try to figure it out how to make mirror of the parabola to some line.
For example like that:
In that example my original parabola is: $f_p(x) = x^2 $ - (red line)
My mirror center line is: $f_c(x) = x $ - (green line)
And my mirrored parabola is: $f_m(x) = sqrt { x } $ - (blue line - of course it's just half of parabola but it's enough for me)
But what in case if my mirror center line is for example: $f_c(x) = 0.3x$
And my parabola that I want to mirror is more complicated like: $f_p(x) = ax^2+bx+c$
How to make mirrored parabola to such line (just for remind: half of parabola would be great enough for me).
For any help thanks in advance.
geometry conic-sections
I try to figure it out how to make mirror of the parabola to some line.
For example like that:
In that example my original parabola is: $f_p(x) = x^2 $ - (red line)
My mirror center line is: $f_c(x) = x $ - (green line)
And my mirrored parabola is: $f_m(x) = sqrt { x } $ - (blue line - of course it's just half of parabola but it's enough for me)
But what in case if my mirror center line is for example: $f_c(x) = 0.3x$
And my parabola that I want to mirror is more complicated like: $f_p(x) = ax^2+bx+c$
How to make mirrored parabola to such line (just for remind: half of parabola would be great enough for me).
For any help thanks in advance.
geometry conic-sections
geometry conic-sections
asked Nov 27 '18 at 22:32
pajczur
854
854
1
Notice that $x mapsto sqrt{x}$ may locally look like the mirrored parabola, but it's actually not. The mirrored parabola is given by $y^2 = x$.
– Viktor Glombik
Nov 27 '18 at 22:42
1
The only reflections that will result in a function of $x$ are those in vertical lines. For reflections in arbitrary lines, you’ll need to use an implicit equation $Ax^2+Bxy+Cy^2+Dx+Ey+F=0$.
– amd
Nov 27 '18 at 23:07
add a comment |
1
Notice that $x mapsto sqrt{x}$ may locally look like the mirrored parabola, but it's actually not. The mirrored parabola is given by $y^2 = x$.
– Viktor Glombik
Nov 27 '18 at 22:42
1
The only reflections that will result in a function of $x$ are those in vertical lines. For reflections in arbitrary lines, you’ll need to use an implicit equation $Ax^2+Bxy+Cy^2+Dx+Ey+F=0$.
– amd
Nov 27 '18 at 23:07
1
1
Notice that $x mapsto sqrt{x}$ may locally look like the mirrored parabola, but it's actually not. The mirrored parabola is given by $y^2 = x$.
– Viktor Glombik
Nov 27 '18 at 22:42
Notice that $x mapsto sqrt{x}$ may locally look like the mirrored parabola, but it's actually not. The mirrored parabola is given by $y^2 = x$.
– Viktor Glombik
Nov 27 '18 at 22:42
1
1
The only reflections that will result in a function of $x$ are those in vertical lines. For reflections in arbitrary lines, you’ll need to use an implicit equation $Ax^2+Bxy+Cy^2+Dx+Ey+F=0$.
– amd
Nov 27 '18 at 23:07
The only reflections that will result in a function of $x$ are those in vertical lines. For reflections in arbitrary lines, you’ll need to use an implicit equation $Ax^2+Bxy+Cy^2+Dx+Ey+F=0$.
– amd
Nov 27 '18 at 23:07
add a comment |
2 Answers
2
active
oldest
votes
For simple parabolas of the form $f(x) = ax^2$ the mirrored (about $y = x$) parabola is given by $y^2 = frac{x}{a}$.
The intuition here is to swap the variables to achieve the mirroring:
begin{equation*}
f(x) = y = ax^2 iff frac{y}{a} = x^2
overset{textrm{mirror}}{implies} y^2 = frac{x}{a}.
end{equation*}
The same goes for parabolas of the form $(x-a)^2$ or $(x-a)(x-b)$, just swap the variables ($x = y$ and vice versa, since you reflect upon $y = x$!).
This covered all parabolas.
Note that an equation of the form $y^2 = cx$ is not a function of x since there are two $y$-values for every $x$-value. If you only want the positive part (analogous to the root-function) you can solve the above equation for one of these $x$-values.
2
But it doesn't cover reflecting in other than $y=x,$ which post asks about.
– coffeemath
Nov 27 '18 at 23:06
add a comment |
Point $P=(x,y)$ is reflected about line $y=mx$ to a point $P'=(x',y')$ given by:
$$
x'={2my+(1-m^2)xover1+m^2},quad y'={2mx-(1-m^2)yover1+m^2}.
$$
To obtain the reflected equation of parabola $y=x^2$ it is then enough to substitute the above expressions into $y'=x'^2$, to get:
$$
4m^2y^2+4m(1-m^2)xy+(1-m^2)^2 x^2+(1-m^4)y-2m(1+m^2)x=0.
$$
And this works also for a parabola of the form $x mapsto ax^2 + bx + c$?
– Viktor Glombik
Nov 27 '18 at 23:45
@ViktorGlombik Of course it works in that case too.
– Aretino
Nov 28 '18 at 9:26
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%2f3016399%2fhow-to-make-mirrored-parabola%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
For simple parabolas of the form $f(x) = ax^2$ the mirrored (about $y = x$) parabola is given by $y^2 = frac{x}{a}$.
The intuition here is to swap the variables to achieve the mirroring:
begin{equation*}
f(x) = y = ax^2 iff frac{y}{a} = x^2
overset{textrm{mirror}}{implies} y^2 = frac{x}{a}.
end{equation*}
The same goes for parabolas of the form $(x-a)^2$ or $(x-a)(x-b)$, just swap the variables ($x = y$ and vice versa, since you reflect upon $y = x$!).
This covered all parabolas.
Note that an equation of the form $y^2 = cx$ is not a function of x since there are two $y$-values for every $x$-value. If you only want the positive part (analogous to the root-function) you can solve the above equation for one of these $x$-values.
2
But it doesn't cover reflecting in other than $y=x,$ which post asks about.
– coffeemath
Nov 27 '18 at 23:06
add a comment |
For simple parabolas of the form $f(x) = ax^2$ the mirrored (about $y = x$) parabola is given by $y^2 = frac{x}{a}$.
The intuition here is to swap the variables to achieve the mirroring:
begin{equation*}
f(x) = y = ax^2 iff frac{y}{a} = x^2
overset{textrm{mirror}}{implies} y^2 = frac{x}{a}.
end{equation*}
The same goes for parabolas of the form $(x-a)^2$ or $(x-a)(x-b)$, just swap the variables ($x = y$ and vice versa, since you reflect upon $y = x$!).
This covered all parabolas.
Note that an equation of the form $y^2 = cx$ is not a function of x since there are two $y$-values for every $x$-value. If you only want the positive part (analogous to the root-function) you can solve the above equation for one of these $x$-values.
2
But it doesn't cover reflecting in other than $y=x,$ which post asks about.
– coffeemath
Nov 27 '18 at 23:06
add a comment |
For simple parabolas of the form $f(x) = ax^2$ the mirrored (about $y = x$) parabola is given by $y^2 = frac{x}{a}$.
The intuition here is to swap the variables to achieve the mirroring:
begin{equation*}
f(x) = y = ax^2 iff frac{y}{a} = x^2
overset{textrm{mirror}}{implies} y^2 = frac{x}{a}.
end{equation*}
The same goes for parabolas of the form $(x-a)^2$ or $(x-a)(x-b)$, just swap the variables ($x = y$ and vice versa, since you reflect upon $y = x$!).
This covered all parabolas.
Note that an equation of the form $y^2 = cx$ is not a function of x since there are two $y$-values for every $x$-value. If you only want the positive part (analogous to the root-function) you can solve the above equation for one of these $x$-values.
For simple parabolas of the form $f(x) = ax^2$ the mirrored (about $y = x$) parabola is given by $y^2 = frac{x}{a}$.
The intuition here is to swap the variables to achieve the mirroring:
begin{equation*}
f(x) = y = ax^2 iff frac{y}{a} = x^2
overset{textrm{mirror}}{implies} y^2 = frac{x}{a}.
end{equation*}
The same goes for parabolas of the form $(x-a)^2$ or $(x-a)(x-b)$, just swap the variables ($x = y$ and vice versa, since you reflect upon $y = x$!).
This covered all parabolas.
Note that an equation of the form $y^2 = cx$ is not a function of x since there are two $y$-values for every $x$-value. If you only want the positive part (analogous to the root-function) you can solve the above equation for one of these $x$-values.
edited Nov 27 '18 at 23:51
answered Nov 27 '18 at 22:50
Viktor Glombik
576425
576425
2
But it doesn't cover reflecting in other than $y=x,$ which post asks about.
– coffeemath
Nov 27 '18 at 23:06
add a comment |
2
But it doesn't cover reflecting in other than $y=x,$ which post asks about.
– coffeemath
Nov 27 '18 at 23:06
2
2
But it doesn't cover reflecting in other than $y=x,$ which post asks about.
– coffeemath
Nov 27 '18 at 23:06
But it doesn't cover reflecting in other than $y=x,$ which post asks about.
– coffeemath
Nov 27 '18 at 23:06
add a comment |
Point $P=(x,y)$ is reflected about line $y=mx$ to a point $P'=(x',y')$ given by:
$$
x'={2my+(1-m^2)xover1+m^2},quad y'={2mx-(1-m^2)yover1+m^2}.
$$
To obtain the reflected equation of parabola $y=x^2$ it is then enough to substitute the above expressions into $y'=x'^2$, to get:
$$
4m^2y^2+4m(1-m^2)xy+(1-m^2)^2 x^2+(1-m^4)y-2m(1+m^2)x=0.
$$
And this works also for a parabola of the form $x mapsto ax^2 + bx + c$?
– Viktor Glombik
Nov 27 '18 at 23:45
@ViktorGlombik Of course it works in that case too.
– Aretino
Nov 28 '18 at 9:26
add a comment |
Point $P=(x,y)$ is reflected about line $y=mx$ to a point $P'=(x',y')$ given by:
$$
x'={2my+(1-m^2)xover1+m^2},quad y'={2mx-(1-m^2)yover1+m^2}.
$$
To obtain the reflected equation of parabola $y=x^2$ it is then enough to substitute the above expressions into $y'=x'^2$, to get:
$$
4m^2y^2+4m(1-m^2)xy+(1-m^2)^2 x^2+(1-m^4)y-2m(1+m^2)x=0.
$$
And this works also for a parabola of the form $x mapsto ax^2 + bx + c$?
– Viktor Glombik
Nov 27 '18 at 23:45
@ViktorGlombik Of course it works in that case too.
– Aretino
Nov 28 '18 at 9:26
add a comment |
Point $P=(x,y)$ is reflected about line $y=mx$ to a point $P'=(x',y')$ given by:
$$
x'={2my+(1-m^2)xover1+m^2},quad y'={2mx-(1-m^2)yover1+m^2}.
$$
To obtain the reflected equation of parabola $y=x^2$ it is then enough to substitute the above expressions into $y'=x'^2$, to get:
$$
4m^2y^2+4m(1-m^2)xy+(1-m^2)^2 x^2+(1-m^4)y-2m(1+m^2)x=0.
$$
Point $P=(x,y)$ is reflected about line $y=mx$ to a point $P'=(x',y')$ given by:
$$
x'={2my+(1-m^2)xover1+m^2},quad y'={2mx-(1-m^2)yover1+m^2}.
$$
To obtain the reflected equation of parabola $y=x^2$ it is then enough to substitute the above expressions into $y'=x'^2$, to get:
$$
4m^2y^2+4m(1-m^2)xy+(1-m^2)^2 x^2+(1-m^4)y-2m(1+m^2)x=0.
$$
edited Nov 29 '18 at 18:31
answered Nov 27 '18 at 23:07
Aretino
22.6k21442
22.6k21442
And this works also for a parabola of the form $x mapsto ax^2 + bx + c$?
– Viktor Glombik
Nov 27 '18 at 23:45
@ViktorGlombik Of course it works in that case too.
– Aretino
Nov 28 '18 at 9:26
add a comment |
And this works also for a parabola of the form $x mapsto ax^2 + bx + c$?
– Viktor Glombik
Nov 27 '18 at 23:45
@ViktorGlombik Of course it works in that case too.
– Aretino
Nov 28 '18 at 9:26
And this works also for a parabola of the form $x mapsto ax^2 + bx + c$?
– Viktor Glombik
Nov 27 '18 at 23:45
And this works also for a parabola of the form $x mapsto ax^2 + bx + c$?
– Viktor Glombik
Nov 27 '18 at 23:45
@ViktorGlombik Of course it works in that case too.
– Aretino
Nov 28 '18 at 9:26
@ViktorGlombik Of course it works in that case too.
– Aretino
Nov 28 '18 at 9:26
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.
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.
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%2f3016399%2fhow-to-make-mirrored-parabola%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
1
Notice that $x mapsto sqrt{x}$ may locally look like the mirrored parabola, but it's actually not. The mirrored parabola is given by $y^2 = x$.
– Viktor Glombik
Nov 27 '18 at 22:42
1
The only reflections that will result in a function of $x$ are those in vertical lines. For reflections in arbitrary lines, you’ll need to use an implicit equation $Ax^2+Bxy+Cy^2+Dx+Ey+F=0$.
– amd
Nov 27 '18 at 23:07