Created
June 9, 2015 06:03
-
-
Save dandavison/3104ea56dfd3d8f5113a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"He's shown that the function can be written as\n", | |
"\n", | |
"$$ a[(x-p)^2 + q^2] $$\n", | |
"\n", | |
"So that shows it's the graph of $y = x^2$, shifted to the right by $p$, shifted up by $q^2$ and then scaled by a factor of $a$. So, the minimum is at $p$.\n", | |
"\n", | |
"Now the task is similarly to \"read off\" the value of $q$. Multiplying out, it's\n", | |
"\n", | |
"$$ a(x-p)^2 + aq^2 $$\n", | |
"\n", | |
"I *think* he looks at this and says \"if $x-p = q$ then the whole thing is going to be $2aq^2$\". So $q$ is the value of $x$ where the function is equal to $2aq^2$, minus $p$.\n", | |
"\n", | |
"\n", | |
"Maybe there are other equivalent ways to \"read off\" the value of $q$ from the graph, in the same way that in geometry problems a line/chord/angle/whatever of the same value may appear in multiple places?\n", | |
"\n", | |
"\n", | |
"Also, could he have said (and tell me if this indicates a fundamental confusion): to get $q$, go to the $y$-value of the minimum (i.e. $aq^2$), take that value, divide by $a$, and then take the square root?" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 2", | |
"language": "python", | |
"name": "python2" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 2 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython2", | |
"version": "2.7.10" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment