Here is the equation that describes the motion of a planet under the gravitational field generated by a fixed star: $u=\frac el\cos\theta+\frac 1l$, where $u$ is the reciprocal of the radial distance between the planet and the star, $e$ is the eccentricity of the orbit, $l$ is the semi latus rectum, and let $h$ denote the angular momentum per unit mass, $\theta$ is the angular coordinate. $e$,$h$,$l$ turn out to be independent from one another, and they are independent from $t$ and $\theta$. At time $t=0$, we let the radial speed vanish, and we also let the angular coordinate vanish. To find the relationship between time and angular speed $\omega$, we assume that $u$ is a smooth fuction of $t$, and differentiate $u$ w.r.t. $t$, and use $\omega=hu^2$ to find out an expression for $\omega$. To do this we can differentiate $u$ w.r.t. $\theta$ first then multiply it by $\omega$, which equals to $hu^2$. Then differentiate the first derivate of $u$ w.r.t $\theta$ first, then multiply the result by $hu^2$ and so on. Since the whole process involves the differentiation w.r.t. $\theta$ only, we can assume that $e=0.5, l=h=1$. We set $e=0.5$ only because we wish to study bounded orbits so that we can apply Kepler's law and verify our result. However, the whole process is time consuming since the formula for the derivatives of $u$ becomes complicated very quickly, even if we assume explicit values for $e, l, h$. The only effective way, therefore, is to design an algorithm for this process. But I do not have any knowlege about computer science, if anyone knows how to design algorithms or know about some other ways to find out $\omega $ in terms of $t$, please share.
2026-03-30 15:03:46.1774883026
Find out the angular speed in terms of time.
87 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in ALGORITHMS
- Least Absolute Deviation (LAD) Line Fitting / Regression
- Do these special substring sets form a matroid?
- Modified conjugate gradient method to minimise quadratic functional restricted to positive solutions
- Correct way to prove Big O statement
- Product of sums of all subsets mod $k$?
- (logn)^(logn) = n^(log10+logn). WHY?
- Clarificaiton on barycentric coordinates
- Minimum number of moves to make all elements of the sequence zero.
- Translation of the work of Gauss where the fast Fourier transform algorithm first appeared
- sources about SVD complexity
Related Questions in PHYSICS
- Why is the derivative of a vector in polar form the cross product?
- What is meant by input and output bases?
- Does Planck length contradict math?
- Computing relative error with ideal gas law.
- Planetary orbits in a $4$-dimensional universe
- Applied Maths: Equations of Motion
- Return probability random walk
- What will be the velocity of a photon ejected from the surface of cesium by a photon with a frequency of 6.12E14 s^-1?
- What mathematical principal allows this rearrangement during simplifying
- Time when velocity of object is zero and position at that point in time
Related Questions in CLASSICAL-MECHANICS
- An underdetermined system derived for rotated coordinate system
- Bouncing ball optimization
- Circular Motion Question - fully algebraic
- How can I solve this pair of differential equations?
- How to solve $-\frac{1}{2}gt^2\sin \theta=x$ when $x$ equals $0$
- Find the acceleration and tension in pulley setup
- Derive first-order time derivatives in a second-order dynamic system
- Phase curves of a spherical pendulum
- Velocity dependent force with arbitrary power
- An explanation for mathematicians of the three-body problem using a simple example, and the moons of Saturn
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Kepler actually had three laws. One of them is the "equal areas" law. Draw a line from the star to the planet; as time passes and the planet moves, the line between the star and the planet sweeps out an area of the ellipse. The total area swept between time $t_i = 0$ and time $t_f$ is proportional to the elapsed time $t_f$.
To the time at any point along the orbit, simply determine how much area was swept out up to that point and divide by the constant rate at which the swept area increases. Determine the angular velocity at that same point (again using the equal area law) and you have a formula relating angular velocity and time.
Once you have that formula, solve for angular speed, and you will have angular speed as a function of time, as you wanted.
This is all possible to do with pencil and paper without involving a computer.