Equation for arc with decaying radius
up vote
1
down vote
favorite
Hoping for some insight into the equation and mechanics of an arc with a decaying radius.
Say at 0 degrees
/ 0 rad
, the radius is 1
. But by 90 degrees
/ π/2 rad
the radius is 1/2
. During that sweep from 0 --> 90
degrees, the radius is decaying at a constant rate.
As I was thinking about this, I was surprised -- though I shouldn't be -- that the arc would "balloon out" a bit on its way to 1/2r
from 1r
. And I dig this, and would like to understand the equation that would graph this.
Attached is a sketch of what I'm attempting to graph:
Thanks.
geometry polar-coordinates arc-length
add a comment |
up vote
1
down vote
favorite
Hoping for some insight into the equation and mechanics of an arc with a decaying radius.
Say at 0 degrees
/ 0 rad
, the radius is 1
. But by 90 degrees
/ π/2 rad
the radius is 1/2
. During that sweep from 0 --> 90
degrees, the radius is decaying at a constant rate.
As I was thinking about this, I was surprised -- though I shouldn't be -- that the arc would "balloon out" a bit on its way to 1/2r
from 1r
. And I dig this, and would like to understand the equation that would graph this.
Attached is a sketch of what I'm attempting to graph:
Thanks.
geometry polar-coordinates arc-length
1
Suggest write $pi/2$ radians-- $1/2pi$ might be confused with $1/(2pi).$
– coffeemath
Nov 19 at 15:34
Thanks - been awhile since I worked with radians, updating...
– ghukill
Nov 19 at 15:35
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Hoping for some insight into the equation and mechanics of an arc with a decaying radius.
Say at 0 degrees
/ 0 rad
, the radius is 1
. But by 90 degrees
/ π/2 rad
the radius is 1/2
. During that sweep from 0 --> 90
degrees, the radius is decaying at a constant rate.
As I was thinking about this, I was surprised -- though I shouldn't be -- that the arc would "balloon out" a bit on its way to 1/2r
from 1r
. And I dig this, and would like to understand the equation that would graph this.
Attached is a sketch of what I'm attempting to graph:
Thanks.
geometry polar-coordinates arc-length
Hoping for some insight into the equation and mechanics of an arc with a decaying radius.
Say at 0 degrees
/ 0 rad
, the radius is 1
. But by 90 degrees
/ π/2 rad
the radius is 1/2
. During that sweep from 0 --> 90
degrees, the radius is decaying at a constant rate.
As I was thinking about this, I was surprised -- though I shouldn't be -- that the arc would "balloon out" a bit on its way to 1/2r
from 1r
. And I dig this, and would like to understand the equation that would graph this.
Attached is a sketch of what I'm attempting to graph:
Thanks.
geometry polar-coordinates arc-length
geometry polar-coordinates arc-length
edited Nov 19 at 15:36
asked Nov 19 at 15:20
ghukill
1084
1084
1
Suggest write $pi/2$ radians-- $1/2pi$ might be confused with $1/(2pi).$
– coffeemath
Nov 19 at 15:34
Thanks - been awhile since I worked with radians, updating...
– ghukill
Nov 19 at 15:35
add a comment |
1
Suggest write $pi/2$ radians-- $1/2pi$ might be confused with $1/(2pi).$
– coffeemath
Nov 19 at 15:34
Thanks - been awhile since I worked with radians, updating...
– ghukill
Nov 19 at 15:35
1
1
Suggest write $pi/2$ radians-- $1/2pi$ might be confused with $1/(2pi).$
– coffeemath
Nov 19 at 15:34
Suggest write $pi/2$ radians-- $1/2pi$ might be confused with $1/(2pi).$
– coffeemath
Nov 19 at 15:34
Thanks - been awhile since I worked with radians, updating...
– ghukill
Nov 19 at 15:35
Thanks - been awhile since I worked with radians, updating...
– ghukill
Nov 19 at 15:35
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
accepted
What you have constructed is a spiral of Archimedes.
There are a couple of minor differences between the usual construction of the spiral of Archimedes and yours.
One difference is that in the usual spiral equations, we have the radius increasing as the angle increases, whereas you have it decreasing.
If that were the only difference between the two constructions, you would get a mirror image.
But another difference is that the usual convention is that the angle increases in a counterclockwise direction, whereas you have gone clockwise.
So that cancels the mirror-image effect.
Other things that are different in the usual convention is that the "zero" angle is conventionally pointing in the horizontal direction to the right rather than vertically, and the radius is usually zero at the zero angle.
The combined result of all these differences compared to the "standard" construction is that the "standard" construction, which would have the polar equation
$r = frac1pitheta$ (with $theta$ in radians) ends up making a spiral just like yours but rotated $90$ degrees counterclockwise.
You have made my day, thank you. I found value in the other answer as well, but the connection to a pre-existing thing / story / example was extremely helpful. And the equation. Thanks again.
– ghukill
Nov 19 at 16:19
add a comment |
up vote
0
down vote
You should look into polar coordinates. If you have a point at angle $theta$ from the $Ox^to$ axis, and at distance $r$ from the center at the coordinate system, it has polar coordinates $(r, theta)$.
In your case, $r$ is a function of $theta$: $r(theta) = 1 - frac{1}{pi}theta$.
Note at angle 0, $r(0) = 1$, and at angle 90 degrees, $r(frac{pi}{2}) = 1 - frac{1}{2} = frac{1}{2}$.
In polar coordinates, it is easy to transfer from polar to Cartesian coordinates $(x, y)$:
$$x = rcos(theta) = (1 - frac{1}{pi}theta)cos(theta)$$
$$y = rsin(theta) = (1 - frac{1}{pi}theta)sin(theta)$$
The above is a good parametric description of the curve. If you want an equation that relates $x$ and $y$, you need to go a step further.
Lets limit the curve to the first quadrant ($0 leq theta leq frac{pi}{2}$) to avoid dealing with multiple $y$ points on the same $x$. In that case, we can easily express $sin(theta) = sqrt{1 - cos^2(theta)}$. Then
$$y = (1 - frac{1}{pi}theta)sqrt{1 - cos^2(theta)} =
(1 - frac{1}{pi}theta)
sqrt{1 - Bigg(frac{x}{1 - frac{1}{pi}theta}Bigg)^2}$$
Thanks, this is very helpful! I selected the other answer as it will be immediately helpful to me, but I look forward to pouring over this a bit as well.
– ghukill
Nov 19 at 16:20
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
What you have constructed is a spiral of Archimedes.
There are a couple of minor differences between the usual construction of the spiral of Archimedes and yours.
One difference is that in the usual spiral equations, we have the radius increasing as the angle increases, whereas you have it decreasing.
If that were the only difference between the two constructions, you would get a mirror image.
But another difference is that the usual convention is that the angle increases in a counterclockwise direction, whereas you have gone clockwise.
So that cancels the mirror-image effect.
Other things that are different in the usual convention is that the "zero" angle is conventionally pointing in the horizontal direction to the right rather than vertically, and the radius is usually zero at the zero angle.
The combined result of all these differences compared to the "standard" construction is that the "standard" construction, which would have the polar equation
$r = frac1pitheta$ (with $theta$ in radians) ends up making a spiral just like yours but rotated $90$ degrees counterclockwise.
You have made my day, thank you. I found value in the other answer as well, but the connection to a pre-existing thing / story / example was extremely helpful. And the equation. Thanks again.
– ghukill
Nov 19 at 16:19
add a comment |
up vote
1
down vote
accepted
What you have constructed is a spiral of Archimedes.
There are a couple of minor differences between the usual construction of the spiral of Archimedes and yours.
One difference is that in the usual spiral equations, we have the radius increasing as the angle increases, whereas you have it decreasing.
If that were the only difference between the two constructions, you would get a mirror image.
But another difference is that the usual convention is that the angle increases in a counterclockwise direction, whereas you have gone clockwise.
So that cancels the mirror-image effect.
Other things that are different in the usual convention is that the "zero" angle is conventionally pointing in the horizontal direction to the right rather than vertically, and the radius is usually zero at the zero angle.
The combined result of all these differences compared to the "standard" construction is that the "standard" construction, which would have the polar equation
$r = frac1pitheta$ (with $theta$ in radians) ends up making a spiral just like yours but rotated $90$ degrees counterclockwise.
You have made my day, thank you. I found value in the other answer as well, but the connection to a pre-existing thing / story / example was extremely helpful. And the equation. Thanks again.
– ghukill
Nov 19 at 16:19
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
What you have constructed is a spiral of Archimedes.
There are a couple of minor differences between the usual construction of the spiral of Archimedes and yours.
One difference is that in the usual spiral equations, we have the radius increasing as the angle increases, whereas you have it decreasing.
If that were the only difference between the two constructions, you would get a mirror image.
But another difference is that the usual convention is that the angle increases in a counterclockwise direction, whereas you have gone clockwise.
So that cancels the mirror-image effect.
Other things that are different in the usual convention is that the "zero" angle is conventionally pointing in the horizontal direction to the right rather than vertically, and the radius is usually zero at the zero angle.
The combined result of all these differences compared to the "standard" construction is that the "standard" construction, which would have the polar equation
$r = frac1pitheta$ (with $theta$ in radians) ends up making a spiral just like yours but rotated $90$ degrees counterclockwise.
What you have constructed is a spiral of Archimedes.
There are a couple of minor differences between the usual construction of the spiral of Archimedes and yours.
One difference is that in the usual spiral equations, we have the radius increasing as the angle increases, whereas you have it decreasing.
If that were the only difference between the two constructions, you would get a mirror image.
But another difference is that the usual convention is that the angle increases in a counterclockwise direction, whereas you have gone clockwise.
So that cancels the mirror-image effect.
Other things that are different in the usual convention is that the "zero" angle is conventionally pointing in the horizontal direction to the right rather than vertically, and the radius is usually zero at the zero angle.
The combined result of all these differences compared to the "standard" construction is that the "standard" construction, which would have the polar equation
$r = frac1pitheta$ (with $theta$ in radians) ends up making a spiral just like yours but rotated $90$ degrees counterclockwise.
answered Nov 19 at 16:05
David K
51.5k340113
51.5k340113
You have made my day, thank you. I found value in the other answer as well, but the connection to a pre-existing thing / story / example was extremely helpful. And the equation. Thanks again.
– ghukill
Nov 19 at 16:19
add a comment |
You have made my day, thank you. I found value in the other answer as well, but the connection to a pre-existing thing / story / example was extremely helpful. And the equation. Thanks again.
– ghukill
Nov 19 at 16:19
You have made my day, thank you. I found value in the other answer as well, but the connection to a pre-existing thing / story / example was extremely helpful. And the equation. Thanks again.
– ghukill
Nov 19 at 16:19
You have made my day, thank you. I found value in the other answer as well, but the connection to a pre-existing thing / story / example was extremely helpful. And the equation. Thanks again.
– ghukill
Nov 19 at 16:19
add a comment |
up vote
0
down vote
You should look into polar coordinates. If you have a point at angle $theta$ from the $Ox^to$ axis, and at distance $r$ from the center at the coordinate system, it has polar coordinates $(r, theta)$.
In your case, $r$ is a function of $theta$: $r(theta) = 1 - frac{1}{pi}theta$.
Note at angle 0, $r(0) = 1$, and at angle 90 degrees, $r(frac{pi}{2}) = 1 - frac{1}{2} = frac{1}{2}$.
In polar coordinates, it is easy to transfer from polar to Cartesian coordinates $(x, y)$:
$$x = rcos(theta) = (1 - frac{1}{pi}theta)cos(theta)$$
$$y = rsin(theta) = (1 - frac{1}{pi}theta)sin(theta)$$
The above is a good parametric description of the curve. If you want an equation that relates $x$ and $y$, you need to go a step further.
Lets limit the curve to the first quadrant ($0 leq theta leq frac{pi}{2}$) to avoid dealing with multiple $y$ points on the same $x$. In that case, we can easily express $sin(theta) = sqrt{1 - cos^2(theta)}$. Then
$$y = (1 - frac{1}{pi}theta)sqrt{1 - cos^2(theta)} =
(1 - frac{1}{pi}theta)
sqrt{1 - Bigg(frac{x}{1 - frac{1}{pi}theta}Bigg)^2}$$
Thanks, this is very helpful! I selected the other answer as it will be immediately helpful to me, but I look forward to pouring over this a bit as well.
– ghukill
Nov 19 at 16:20
add a comment |
up vote
0
down vote
You should look into polar coordinates. If you have a point at angle $theta$ from the $Ox^to$ axis, and at distance $r$ from the center at the coordinate system, it has polar coordinates $(r, theta)$.
In your case, $r$ is a function of $theta$: $r(theta) = 1 - frac{1}{pi}theta$.
Note at angle 0, $r(0) = 1$, and at angle 90 degrees, $r(frac{pi}{2}) = 1 - frac{1}{2} = frac{1}{2}$.
In polar coordinates, it is easy to transfer from polar to Cartesian coordinates $(x, y)$:
$$x = rcos(theta) = (1 - frac{1}{pi}theta)cos(theta)$$
$$y = rsin(theta) = (1 - frac{1}{pi}theta)sin(theta)$$
The above is a good parametric description of the curve. If you want an equation that relates $x$ and $y$, you need to go a step further.
Lets limit the curve to the first quadrant ($0 leq theta leq frac{pi}{2}$) to avoid dealing with multiple $y$ points on the same $x$. In that case, we can easily express $sin(theta) = sqrt{1 - cos^2(theta)}$. Then
$$y = (1 - frac{1}{pi}theta)sqrt{1 - cos^2(theta)} =
(1 - frac{1}{pi}theta)
sqrt{1 - Bigg(frac{x}{1 - frac{1}{pi}theta}Bigg)^2}$$
Thanks, this is very helpful! I selected the other answer as it will be immediately helpful to me, but I look forward to pouring over this a bit as well.
– ghukill
Nov 19 at 16:20
add a comment |
up vote
0
down vote
up vote
0
down vote
You should look into polar coordinates. If you have a point at angle $theta$ from the $Ox^to$ axis, and at distance $r$ from the center at the coordinate system, it has polar coordinates $(r, theta)$.
In your case, $r$ is a function of $theta$: $r(theta) = 1 - frac{1}{pi}theta$.
Note at angle 0, $r(0) = 1$, and at angle 90 degrees, $r(frac{pi}{2}) = 1 - frac{1}{2} = frac{1}{2}$.
In polar coordinates, it is easy to transfer from polar to Cartesian coordinates $(x, y)$:
$$x = rcos(theta) = (1 - frac{1}{pi}theta)cos(theta)$$
$$y = rsin(theta) = (1 - frac{1}{pi}theta)sin(theta)$$
The above is a good parametric description of the curve. If you want an equation that relates $x$ and $y$, you need to go a step further.
Lets limit the curve to the first quadrant ($0 leq theta leq frac{pi}{2}$) to avoid dealing with multiple $y$ points on the same $x$. In that case, we can easily express $sin(theta) = sqrt{1 - cos^2(theta)}$. Then
$$y = (1 - frac{1}{pi}theta)sqrt{1 - cos^2(theta)} =
(1 - frac{1}{pi}theta)
sqrt{1 - Bigg(frac{x}{1 - frac{1}{pi}theta}Bigg)^2}$$
You should look into polar coordinates. If you have a point at angle $theta$ from the $Ox^to$ axis, and at distance $r$ from the center at the coordinate system, it has polar coordinates $(r, theta)$.
In your case, $r$ is a function of $theta$: $r(theta) = 1 - frac{1}{pi}theta$.
Note at angle 0, $r(0) = 1$, and at angle 90 degrees, $r(frac{pi}{2}) = 1 - frac{1}{2} = frac{1}{2}$.
In polar coordinates, it is easy to transfer from polar to Cartesian coordinates $(x, y)$:
$$x = rcos(theta) = (1 - frac{1}{pi}theta)cos(theta)$$
$$y = rsin(theta) = (1 - frac{1}{pi}theta)sin(theta)$$
The above is a good parametric description of the curve. If you want an equation that relates $x$ and $y$, you need to go a step further.
Lets limit the curve to the first quadrant ($0 leq theta leq frac{pi}{2}$) to avoid dealing with multiple $y$ points on the same $x$. In that case, we can easily express $sin(theta) = sqrt{1 - cos^2(theta)}$. Then
$$y = (1 - frac{1}{pi}theta)sqrt{1 - cos^2(theta)} =
(1 - frac{1}{pi}theta)
sqrt{1 - Bigg(frac{x}{1 - frac{1}{pi}theta}Bigg)^2}$$
answered Nov 19 at 15:40
Todor Markov
4766
4766
Thanks, this is very helpful! I selected the other answer as it will be immediately helpful to me, but I look forward to pouring over this a bit as well.
– ghukill
Nov 19 at 16:20
add a comment |
Thanks, this is very helpful! I selected the other answer as it will be immediately helpful to me, but I look forward to pouring over this a bit as well.
– ghukill
Nov 19 at 16:20
Thanks, this is very helpful! I selected the other answer as it will be immediately helpful to me, but I look forward to pouring over this a bit as well.
– ghukill
Nov 19 at 16:20
Thanks, this is very helpful! I selected the other answer as it will be immediately helpful to me, but I look forward to pouring over this a bit as well.
– ghukill
Nov 19 at 16:20
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%2f3005062%2fequation-for-arc-with-decaying-radius%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
Suggest write $pi/2$ radians-- $1/2pi$ might be confused with $1/(2pi).$
– coffeemath
Nov 19 at 15:34
Thanks - been awhile since I worked with radians, updating...
– ghukill
Nov 19 at 15:35