Moment of Inertia-Ellipse

A ellipse of linear mass density λ = 1 \lambda=1 , placed in x y xy axis , its equation is x 2 9 + y 2 4 = 1 \frac{x^{2}}{9}+\frac{y^{2}}{4}=1 Find its Moment of Inertia about z z axis.

The problem is original


The answer is 99.218.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Dark Angel
May 22, 2020

Steven Chase
May 22, 2020

By implicitly differentiating the equation for the ellipse, we get the following relationship between the infinitesimals:

x 2 a 2 + y 2 b 2 = 1 d y = d x b 2 x a 2 y \frac{x^2}{a^2} + \frac{y^2}{b^2} = 1 \\ dy = dx \, \frac{- b^2 x}{a^2 y}

The rest is fairly straightforward. Integrate over one quadrant and multiply by four.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import math

a = 3.0
b = 2.0

lam = 1.0

dx = 10.0**(-7.0)

#############################

I = 0.0

x = 0.0

while x <= a:

    right = 1.0 - (x/a)**2.0
    y = math.sqrt(4.0*right)

    dy = dx * (-b*b*x)/(a*a*y)

    dL = math.hypot(dx,dy)
    dm = lam * dL

    dI = dm*(x**2.0 + y**2.0)

    I = I + dI

    x = x + dx

I = 4.0*I

#############################

print dx
print I

#>>> 
#1e-05
#99.082438713
#>>> ================================ RESTART ================================
#>>> 
#1e-06
#99.1751859155
#>>>
#>>> 
#1e-07
#99.2858145478
#>>> 

@Steven Chase , Nice solution.I have solve this whole analytically. Try this https://brilliant.org/problems/textcolorbluespherical-textcolorblue-capacitor/

@Steven Chase are you posting any new variety of problem today. I am eagerly waiting. Thanks in advance. Please reply. Otherwise I have to keep checking

Log in to reply

I'll probably post again at the end of the week. I'm quite busy with other things at the moment

Steven Chase - 1 year ago

I tried the new magnetics problem, and it didn't like my answer. Could you double-check?

Steven Chase - 1 year ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...