Euler Definition and 387 Threads
-
Python Project Euler P76: Counting Arrangements of Consecutive Numbers
import time start = time.perf_counter() def con(H): J = [] Q = [] W = [] for i in H: for j in range(len(i)-1): Cop = i[::] y = i[j]+i[j+1] del Cop[j:j+2] Cop.insert(j,y) J.append(Cop) for i in J: y...- Arman777
- Thread
- Euler Project
- Replies: 5
- Forum: Programming and Computer Science
-
T
A Implicit Euler method with adaptive time step and step doubling
For Initial Value problems I want to implement an ODE solver for implicit Euler method with adaptive time step and use step doubling to estimate error. I have found some reading stuff about adaptive time step and error estimation using step doubling but those are mostly related to RK methods. I...- the_dane
- Thread
- Euler Euler method Implicit Method Numerical algorithms Ode Scientific computing Time
- Replies: 2
- Forum: Differential Equations
-
I Calculating derivatives for the Euler equation
This is a calculus of variations problem from Boas chapter 9. I seem to be misunderstanding something with differentiation. Given $$F=(1+yy')^2$$ then $$\frac {\partial F} {\partial y'}=2(1+yy')y$$ and $$\frac {\partial F} {\partial y}=2(1+yy')y' .$$ Now this one I am not so confident... -
Euler Equations for Dynamics of rigid body
I have been studying the dynamics of free top from Morin's book. In his book when describing the dynamics,he writes down the equation of motion as shown in screenshot. However,I am not able to understand which term refers to which coordinate system. For eg: Here ##\omega## refers to angular...- Abhishek11235
- Thread
- Body Dynamics Euler Euler equations Rigid bodies Rigid body Rigid body dynamics Rigid body rotation
- Replies: 5
- Forum: Mechanics
-
S
How to write the complex exponential in terms of sine/cosine?
I apologize in advance if any formatting is weird; this is my first time posting. If I am breaking any rules with the formatting or if I am not providing enough detail or if I am in the wrong sub-forum, please let me know. 1. Homework Statement Using Euler's formula : ejx = cos(x) + jsin(x)...- Selling Papayas
- Thread
- Complex Complex analysis Complex exponential Euler Exponential Imaginary number Sine/cosine Terms Unit conversion
- Replies: 7
- Forum: Calculus and Beyond Homework Help
-
I Understanding 3D Coordinate Rotations with Euler Angles
I'm trying to wrap my head around the concept. we use 3 rotations to transfer our regular cartesian coordinates (3 x,y,z unit vectors) to other 3 unit vectors. each rotation is associated with an angle. so far I'm good. but now I saw in Landau's and Lifshitz's "mechanics" book this thing...- QuasarBoy543298
- Thread
- 3d Angles Coordinate Euler Euler angle Euler angles Rotations
- Replies: 2
- Forum: Classical Physics
-
M
Euler Line theoram - part of the proof is not clear to me
This is not homework. I am reading a book: "The art of infinite: The Pleasure of Mathematics" and pages 119-120 give a proof of the Euler Line theoram: the circumcenter, centroild and orthocenter of a triangle are always colinear (see the attached files). 1. Homework Statement Page 119 shows...- musicgold
- Thread
- Euler Line Proof
- Replies: 3
- Forum: Precalculus Mathematics Homework Help
-
T
I How Do Trigonometric and Exponential Functions Connect?
Hi all: I really do not know what to ask here, so please be patient as I get a little too "spiritual" (for want of a better word). (This could be a stupid question...) I get this: eiθ=cosθ+isinθ And it is beautiful. I am struck by the fact that the trig functions manifest harmonic...- Trying2Learn
- Thread
- Complex Core Euler Euler's equation Exponential Harmonic Trig
- Replies: 9
- Forum: Calculus
-
MHB Euler equations having double roots as a solution
If the Euler equations have double roots as it's solution, second solution will be $y_2(x)=x^r\ln{x}$. what is its proof? or how it can be derived?- WMDhamnekar
- Thread
- Euler Euler equations Roots
- Replies: 3
- Forum: Differential Equations
-
T
A How do I KNOW that Euler angles are sufficient?
Hello Before I "phrase" my question (and that may be my problem), may I first state what I do know. I understand that a Rotation matrix (a member of SO(3)) has nine elements. I also understand that orthogonality imposes constraints, leaving only three free parameters (a sub-manifold) I also...- Trying2Learn
- Thread
- Angles Euler Euler angles Rotation matrices
- Replies: 8
- Forum: Classical Physics
-
I Solution of Quantum differential equation
(I think I couldn't add the image) you can see my answer in link https://pasteboard.co/HPKZ6KD.jpg (Please first see my answer in the link) But in answer it is φ= Asin(kx) + Bcos(kx) I know that euler formula is eix = cosx +isinx But I can't get this answer can you help me?- Edge5
- Thread
- Differential Differential equation Euler Quantum
- Replies: 4
- Forum: Quantum Physics
-
R
A Integration with Euler angle of rotation matrixes
Hello, I was struggling with solving a specific integral. I know that I can rewrite the exponential matrices and the range of the three Euler angles. However, I am not sure I should I write in terms those three Euler angles. -
R
Equation of an oscillating system without any starting values
Homework Statement A mass m1 is located on a platform with mass M. The platfrom is located on springs with total constant k such that it can swing vertically in direction x. a) Write down the equations of motion assuming mass m1 will always be connected to the platform. Write it as x(t) b)...- RiotRick
- Thread
- Euler Oscillating Oscillator Spring System
- Replies: 30
- Forum: Introductory Physics Homework Help
-
Python How Does One Solve the Minimal X for Pell's Equation with D Up to 1000?
Consider quadratic Diophantine equations of the form: x2 – Dy2 = 1 For example, when D=13, the minimal solution in x is 6492 – 13×1802 = 1. It can be assumed that there are no solutions in positive integers when D is square. By finding minimal solutions in x for D = {2, 3, 5, 6, 7}, we...- Arman777
- Thread
- Euler Project
- Replies: 14
- Forum: Programming and Computer Science
-
Python Optimizing Prime Pair Combinations for Project Euler Problem 60
https://projecteuler.net/problem=60 I wrote a piece of code to solve the problem but it still takes too much time to solve it Any ideas how can I improve my code, like adjustments that I can make ? import itertools import time start = time.perf_counter() def prime(N): if N == 0 or N == 1...- Arman777
- Thread
- Euler Project
- Replies: 97
- Forum: Programming and Computer Science
-
S
A Is the Pressure in Paradoxical Euler Flow Fictitious?
Consider the following flow: x = (1+ct)x0. Let the density rho(t) = rho0/(1+ct) so that the flow conserves mass. Physically, this is just a bunch of fluid elements on the positive x0-axis each given initial velocities that are proportional to their initial positions. Each fluid element should...- spin2he2
- Thread
- Euler Flow
- Replies: 10
- Forum: Classical Physics
-
When Does the Prime Ratio of Spiral Diagonals Drop Below 10%?
Homework Statement https://projecteuler.net/problem=58 Homework EquationsThe Attempt at a Solution def prime(N): if N == 1: return False y = int(N**0.5) for i in range(2,y+1): if N%i == 0: return False return True def finder(N): L = len(N)...- Arman777
- Thread
- Euler Primes Project Ratio Spiral
- Replies: 5
- Forum: Engineering and Comp Sci Homework Help
-
Finding Prime Families by Digit Replacement
Homework Statement By replacing the 1st digit of the 2-digit number *3, it turns out that six of the nine possible values: 13, 23, 43, 53, 73, and 83, are all prime. By replacing the 3rd and 4th digits of 56**3 with the same digit, this 5-digit number is the first example having seven primes...- Arman777
- Thread
- Euler Project
- Replies: 5
- Forum: Engineering and Comp Sci Homework Help
-
A
A Euler Angles Transform: Rotating a Body in 3D Space
Only recently started to understand Euler angles and rotation matrices, and I am reasonably comfortable with the concepts already posted here. I am pretty sure I am missing something obvious, but I cannot figure out the way to solve this problem: A body in 3D space with a orientation defined by...- aydos
- Thread
- Angle Euler Euler angle Transform
- Replies: 4
- Forum: General Math
-
I Euler, De Moivre and a printing error
to all members of the forum. In the attached image is equation numbered 3.23 which, by the application of Euler’s Identity - called De Moivre Theorem one line below - leads to equation 3.24. Above is an a textbook frought with errors - printing ones. I would be highly appreciative of a...- wirefree
- Thread
- Error Euler Printing
- Replies: 2
- Forum: General Math
-
H
I Intuitive understanding of Euler's identity?
I'm trying to get a more intuitive understanding of Euler's identity, more specifically, what raising e to the power of i means and why additionally raising by an angle in radians rotates the real value into the imaginary plane. I understand you can derive Euler's formula from the cosx, sinx and...- HuskyLab
- Thread
- Complex Euler Identity Imaginary
- Replies: 6
- Forum: General Math
-
I Question about the Divisor Function/Sums and Project Euler
So I am kind of lost... I don't really know how to ask this. Project Euler is a website that hosts multiple programming contests and I am interested in this problem https://projecteuler.net/problem=608 but my question isn't truly about this problem but a more solution. I know that the Divisor...- Delta31415
- Thread
- Euler Factorization Factors Number theory Project
- Replies: 4
- Forum: General Math
-
A Maximization problem using Euler Lagrange
Hi, I'm trying to solve the following problem ##\max_{f(x)} \int_{f^{-1}(0)}^0 (kx- \int_0^x f(u)du) f'(x) dx##. I have only little experience with calculus of variations - the problem resembles something like ## I(x) = \int_0^1 F(t, x(t), x'(t),x''(t))dt## but I don't know about the... -
S
I Euler Lagrange formula with higher derivatives
I was trying to Extrapolate Eulers formula , after deriing the basic form I wanted to prove: ∂F/∂y - d(∂F/∂yx)/dx +d[SUP]2[/SUP](∂F/∂yxx)/dx2 = 0 Here is my attempt but I get different answers: J(y) = ∫abF(x,yx,y,yxx)dx δ(ε) = J(y+εη(x)) y = yt+εη(x) ∂y/∂ε = η(x) ∂yx/∂ε = η⋅(x)...- Somali_Physicist
- Thread
- Derivatives Euler Formula Lagrange
- Replies: 10
- Forum: Calculus
-
I Using Complex Numbers to find the solutions (simple Q.)
Say you have an un-damped harmonic oscillator (keep it simple) with a sine or cosine for the forcing function. We can exploit Euler's equation and solve for both possibilities (sine or cosine) at the same time. Then, once done, if the forcing function was cosine, we choose the real part as the...- JTC
- Thread
- Complex Complex numbers Euler Imaginary Numbers
- Replies: 3
- Forum: Differential Equations
-
F
I Deduce Geodesics equation from Euler equations
I am using from the following Euler equations : $$\dfrac{\partial f}{\partial u^{i}}-\dfrac{\text{d}}{\text{d}s}\bigg(\dfrac{\partial f}{\partial u'^{i}}\bigg) =0$$ with function ##f## is equal to : $$f=g_{ij}\dfrac{\text{d}u^{i}}{\text{d}s}\dfrac{\text{d}u^{j}}{\text{d}s}$$ and we have...- fab13
- Thread
- Differential geometry Euler Euler equations Geodesic equation Geodesics Tensor calculus
- Replies: 5
- Forum: Differential Geometry
-
Euler angles in torque free precession of a symmetric top
Is calculating the Euler angles analitically possible? I am trying to obtain the angles to transform the body-fixed reference frame to the inertial reference frame. I can get them without problems with numerical methods. But I would to validate them analitically, if possible. I followed the... -
M
Solving the Implicit Euler ODE with Boundary Conditions
Homework Statement Write an implicit Euler code to solve the system ##c'(x) = \epsilon c''(x)-kc(x)## subject to ##1-c(0)+\epsilon c'(0) = 0## and ##c'(1)=0##. Homework Equations Nothing out of the ordinary comes to mind. The Attempt at a Solution In the following code, there is central...- member 428835
- Thread
- Euler Implicit Ode
- Replies: 24
- Forum: Calculus and Beyond Homework Help
-
Equilibrium Statistics -- Euler summation formula
Homework Statement In the calculation in high temperatures of ##Z_{rot} = (\sum_{j=0}^\infty (2j+1)\exp{j(j+1)\theta_{rot}/T})^N##; they use Euler summation formula: $$\sum_{n=0}^\infty f(n) = \int_0^\infty f(x)dx+\frac{1}{2}f(0)-\frac{1}{12}f'(0)+\frac{1}{720}f^{(3)}(0)+\ldots$$ for ##f(x) =...- MathematicalPhysicist
- Thread
- Equilibrium Euler Formula Statistics Summation
- Replies: 15
- Forum: Advanced Physics Homework Help
-
I Euler Characteristic of the Projective plane and sphere?
The Euler Characterist of the projective plane and sphere is given by V - E + F. V is vertices, E is edges, F is faces. A presentation of the projective plane is {a | aa} and a presentation of the sphere is {b | bb^1} Yet the Euler characteristic is 2 for the sphere and 2-n for the connected...- PsychonautQQ
- Thread
- Characteristic Euler Plane Sphere
- Replies: 3
- Forum: Topology and Analysis
-
DE application with possible Euler steps
Homework Statement A mouse starts at the origin and runs up the y-axis with a speed a. At the same time, a cat running with speed b, starts at the point (c,0) and pursues the mouse. i. What is the path of the cat? ii. Assume a<b and solve for y(x). How far does the mouse run before being...- SeattleDrew
- Thread
- Application Euler
- Replies: 3
- Forum: Calculus and Beyond Homework Help
-
I Derivation of Euler Lagrange's equations from D'alemberts principle
In the derivation given in Goldstein's book it is given I can't understand from where it comes. It's not at all trivial for me but it's presented as if it's trivial.- PrathameshR
- Thread
- Derivation Euler Principle
- Replies: 6
- Forum: Classical Physics
-
C
Why does setting the condition to x*x < n not work in finding prime factors?
I've just started with project Euler. The problem I just finished is phrased as follows: "The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ?" The method i used was trial division. Here is my code in C: #include<stdio.h> int main() {...- CrazyNeutrino
- Thread
- Euler Project
- Replies: 4
- Forum: Programming and Computer Science
-
Determine stopping distance of a train - modified Euler method
Homework Statement 12.81[/B] A train traveling at 20m/s is brought to an emergency stop. During braking, the acceleration is a=-(7/4)+(t/16) m/s^2, where t is the time in seconds measured from when the brakes were applied. (a) Integrate the acceleration from t=0 to t=16s using Euler's method...- Alexanddros81
- Thread
- Euler Euler method Method Numerical integration Stopping distance Train
- Replies: 5
- Forum: Introductory Physics Homework Help
-
C
A Derivation of Euler Lagrange, variations
What is wrong with the simple localised geometric derivation of the Euler Lagrange equation. As opposed to the standard derivation that Lagrange provided. Sorry I haven't mastered writing mathematically using latex. I will have a look at this over the next few days. More clarification. I...- cosmic onion
- Thread
- Calculus of variations Derivation Euler Lagrange
- Replies: 4
- Forum: Calculus
-
W
Complex Numbers: Euler's formula problem
Homework Statement Homework EquationsThe Attempt at a Solution I attempted to use the formula zj = xj + iyj to substitute both z's. Further simplification gave me (x1 + x2)cosθ + (y2 - y1)sinθ or, Re(z2 + z1)cosθ + Im(z2 - z1)sinθ. Is this a valid answer? Or are there any other identities...- WWCY
- Thread
- Complex Complex numbers Euler Formula Numbers
- Replies: 2
- Forum: Precalculus Mathematics Homework Help
-
B
A Integral representation of Euler constan
I am working on the integral representation of the Euler-Mascheroni constant and I can't seem to understand why the first of the two integrals is (1-exp(-u))lnu instead of just exp(-u)lnu. It is integrated over the interval from 1 to 0, as opposed to the second integral exp(-u)lnu which is...- bbailey
- Thread
- Euler Integral Representation
- Replies: 1
- Forum: General Math
-
Linear Algebra Problem: Solving for Euler between two ordered bases
Homework Statement Linear Algebra Problem: Solving for Euler between two ordered bases I've got a problem I need to solve, but I can't find a clean solution. Let me see if I can outline the problem somewhat clearly. Okay, all of this will be in 3D space. In this space, we can define some...- Elroy
- Thread
- Algebra Bases Basis Euler Euler angle Linear Linear algebra Rotation
- Replies: 2
- Forum: Engineering and Comp Sci Homework Help
-
M
Solving an Euler differential equation
Homework Statement Solve the differential equation ##(2x+1)^2y'' + (4x+2)y' - 4y = x^2## Can someone verify whether my solution is correct? Homework EquationsThe Attempt at a Solution We perform the substitution ##t = \ln|2x+1|##. Then, ##e^t = |2x+1|## and ##x = \pm(e^t -1)/2## Without...- member 587159
- Thread
- Differential Differential equation Euler
- Replies: 6
- Forum: Calculus and Beyond Homework Help
-
Circles and Euler spiral (repost from general math)
Hi, i have this problem..., giving two circle (example radius 1 = 500 units, radius 2 = 200 units, distance between centers = 275.73 units) find Euler Spiral (aka Cornu spiral, aka Clothoid https://en.wikipedia.org/wiki/Euler_spiral) tangent giving circle (unknown tangent points). For this...- Mario
- Thread
- Circle Circles Euler General General math Spiral
- Replies: 2
- Forum: Precalculus Mathematics Homework Help
-
T
Rigid body orientation using Euler angles confusion
Hello, Homework Statement I'm given the following exercise: "A rod with neglected thickness exists. What is the relation between the α,β angles to Euler angles of orientation? α is defined as the angle between the rod and its projection on the XY plane. β is defined as the angle between the...- Tar
- Thread
- Angles Body Classical mechanics Confusion Euler Euler angles Orientation Rigid body
- Replies: 2
- Forum: Introductory Physics Homework Help
-
F
A About the nodal line in defining Euler angles
I hope someone can explain this to me. In the definition of Euler angles, the body-fixed-azimuthal angel γ is measured from the nodal line that defines the intersection of the body-fixed-XY plane and the space fixed-xy plane to the body-fixed-Y axis. This is the green line in this image from...- ftft
- Thread
- Angles Euler Euler angles Line Nodal
- Replies: 3
- Forum: General Math
-
Finding anitderivative using complex numbers and Euler
I have to find a primitive function below using the Euler formulas for ##\sin x## and ## \cos x## The problem $$ \int e^{2x} \sin 3x \ dx $$ Relevant equations ## \cos x = \frac{e^{ix}+e^{-ix}}{2} \\ \sin x = \frac{e^{ix}-e^{-ix}}{2i} \\ \\ \int e^{ix} \ dx = \frac{e^{ix}}{i} ## The attempt...- Rectifier
- Thread
- Antiderivative Complex Complex numbers Euler Imaginary numbers Numbers Primitive
- Replies: 5
- Forum: Calculus and Beyond Homework Help
-
F
Euler Lagrange equation issue with answers final form
Homework Statement For the following integral, find F and its partial derivatives and plug them into the Euler Lagrange equation $$F(y,x,x')=y\sqrt{1+x'^2}\\$$ Homework Equations Euler Lagrange equation : $$\frac{dF}{dx}-\frac{d}{dy}\frac{dF}{dx'}=0$$ The Attempt at a Solution...- fahraynk
- Thread
- Euler Euler lagrange equation Final Form Lagrange Lagrange equation
- Replies: 7
- Forum: Calculus and Beyond Homework Help
-
Second order non homogeneous ODE, IVP
Homework Statement I need to solve: x^2y''-4xy'+6y=x^3, x>0, y(1)=3, y'(1)=9 Homework EquationsThe Attempt at a Solution I know that the answer is: y=x^2+2x^3+x^3lnx Where did I go wrong. I was wondering if it's even logical to solve it as an Euler Cauchy and then use variation of parameters...- Cocoleia
- Thread
- Cauchy Euler Homogeneous Ivp Ode Second order Second order ode
- Replies: 1
- Forum: Calculus and Beyond Homework Help
-
A
A Euler beam dynamic equation under point load
Hi So the problem I have is I want to get the equation of motion of a vibrating beam under a nonlinear "Point" force. The equation would be like this for a distributed load (Which is not the case) But I want the load to be at a point at x=L So I have to options. Add an impulse dirac function...- Aladdin123
- Thread
- Beam Dynamic Euler Load Point
- Replies: 1
- Forum: Classical Physics
-
O
A How do you KNOW the Euler (Tait) angles cover orienations
Well, that question just about states my issue. We have a body and we rotate about, say, the 3-axis of its body frame. Then, we must do the next rotation about the 1 or 2 axis. Let me say we choose the 1-axis Then we have a choice: continue on to the 2 axis or repeat the 3 axis. One set is...- observer1
- Thread
- Angles Euler Euler angles
- Replies: 6
- Forum: Classical Physics
-
Algebra Best Version of Euler: Elements of Algebra
So I want to read Euler's : Elements of Algebra. However, I see many editions on Amazon. What is the best version of this book?- MidgetDwarf
- Thread
- Algebra Elements Euler
- Replies: 4
- Forum: Science and Math Textbooks
-
B What is the Error in Calculating (e^(iπ))^i?
Before I start, there are only really two pieces of information this concerns and that is the idea that 1x = 1 and that ei*π = -1 So it would follow that (ei*π)i = -1i And so that would mean that i2i = e-π which doesn't seem to be right at all. Where is the issue here as there must be one but I...- Anonymous Vegetable
- Thread
- Euler Identity
- Replies: 14
- Forum: General Math
-
F
I How does the angle γ change under inversion in Euler angles?
The well known Euler angles (αβγ) are defined as in the image It is easy to see that under inversion α → π+α β → π-β but I cannot figure out how γ transforms under inversion. actually I am stuck at the question whether I should measure it from the same intersection line ON (thence γ →π+γ) or...- ftft
- Thread
- Angles Euler Euler angles Inversion
- Replies: 2
- Forum: Topology and Analysis