Ring Tension

A uniform circular ring hangs by a single point at its top, with gravity pointing downward. At what angle θ \theta (in degrees, between 0 0 and 90 90 ) is the tension in the ring equal to the weight of the ring?


The answer is 64.57.

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.

1 solution

Steven Chase
Sep 4, 2019

Method 1

Find θ \theta such that:

2 T cos θ = π + 2 θ 2 π M g T = M g cos θ = π + 2 θ 4 π 2 \, T \, \cos \theta = \frac{\pi + 2 \theta}{2 \pi} M g \\ T = M g \\ \implies \cos \theta = \frac{\pi + 2 \theta}{4 \pi}

Method 2

Another approach considers the force balance for an infinitesimal segment:

T ( θ ) cos ( θ ) T ( θ d θ ) cos ( θ d θ ) = M g d θ 2 π T(\theta) \cos(\theta) - T(\theta - d\theta) \cos(\theta - d\theta) = M g \frac{d \theta}{2 \pi}

The process for each loop iteration is:

1) Store the values for T ( θ d θ ) T(\theta - d\theta) and θ d θ \theta - d\theta
2) Update the value of θ \theta
3) Solve for T ( θ ) T(\theta)

The following code gives the solution for Method 2, and the result is the same

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import math

M = 2.0
g = 10.0

dtheta = (math.pi/2.0)/(10.0**5.0)

T = 0.25*M*g   # initial conditions
theta = 0.0

while T < M*g:

    T_store = T
    theta_store = theta

    theta = theta + dtheta

    right = T_store*math.cos(theta_store) + M*g*dtheta/(2.0*math.pi)
    T = right/math.cos(theta)


print (theta/math.pi)*180.0
#64.5732

Okay, so I got the wrong answer to this one.

What I did was this. I divided the ring into small arc length elements and considered the tension to be varying with θ \theta . Consider one such element at an angle θ \theta to the horizontal.

I am refraining from drawing a diagram, but by carrying out a force balance in the tangential direction, I obtained:

d T d θ = M g 2 π cos θ \frac{dT}{d\theta} = \frac{Mg}{2\pi}\cos{\theta}

I solved the above and couldn't figure out the rest from there. Here M M is the mass of the ring and the other symbols have usual meanings. I am failing to see my mistake here.

Karan Chatrath - 1 year, 9 months ago

Log in to reply

Ok, let my try the infinitesimal approach and see what I get that way. The infinitesimal approach should work too.

Steven Chase - 1 year, 9 months ago

Log in to reply

Thanks. Even I think it should work. I request you to update the solution with this approach when you attempt it.

Karan Chatrath - 1 year, 9 months ago

Log in to reply

@Karan Chatrath I have updated with an infinitesimal analysis as well

Steven Chase - 1 year, 9 months ago

Log in to reply

@Steven Chase Thank you!

I did a force balance along the tangential direction by making a few approximations.

Karan Chatrath - 1 year, 9 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...