Escape Through Functions

A particle mass m = 1 k g m=1kg is placed at N \textcolor{cerulean}{N} ( 2 , 0 , 0 ) (2,0, 0) . λ \lambda is linear mass density. Two graphs have the following equation: sin x , 0 x 2 π , λ = 1 \textcolor{limegreen}{\sin x},0≤x≤2π,\lambda=-1 cos x , 0 x 2 π , λ = + 1 \textcolor{#EC7300}{\cos x}, 0≤x≤2π, \lambda=+1

Find the speed the particle is required to escape through the field forever.

Details and Assumptions
G = 1 G=1 (for simplicity)


The answer is 1.759.

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

Steven Chase
Apr 26, 2020

Nice problem. Simulation code is attached. Note that the net graviational potential energy is negative, which means that the particle has to have positive initial kinetic energy in order to escape the system.

 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import math

# Constants

m = 1.0
G = 1.0

Nx = 2.0
Ny = 0.0

dx = 10.0**(-5.0)

lam1 = -1.0
lam2 = 1.0

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

# Integrate gravitational potential energy

U = 0.0

x = 0.0

while x <= 2.0*math.pi:

    x1 = x
    y1 = math.sin(x)

    x2 = x
    y2 = math.cos(x)

    dx1 = dx
    dx2 = dx

    dy1 = math.cos(x)*dx
    dy2 = -math.sin(x)*dx

    dL1 = math.hypot(dx1,dy1)
    dL2 = math.hypot(dx2,dy2)

    dM1 = dL1 * lam1
    dM2 = dL2 * lam2

    r1 = math.hypot(x1-Nx,y1-Ny)
    r2 = math.hypot(x2-Nx,y2-Ny)

    dU = -G*m*dM1/r1 - G*m*dM2/r2

    U = U + dU

    x = x + dx

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

# Verify that net U is negative
# Calculate escape velocity

print dx
print U

U = math.fabs(U)


# U = 0.5*m*(v0**2.0)

v0 = math.sqrt(2.0*U/m)

print v0

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

#>>> 
#0.0001
#-1.54850452534
#1.75983210866
#>>> ================================ RESTART ================================
#>>> 
#1e-05
#-1.54851262164
#1.75983670927
#>>> 

@Steven Chase Hiii Sir can we find the moment of inertia of ellipse. I am not able to find it . Le the equation of ellipse be x 2 9 + y 2 4 = 1 , λ = 1 \frac{x^{2}}{9}+\frac{y^{2}}{4}=1, \lambda=-1 Though the vertical z z axis

A Former Brilliant Member - 1 year, 1 month ago

Sir how can you surely say that a trajectory exist such that it reaches infinite with that minimum velocity

dark angel - 1 year, 1 month ago

Log in to reply

@dark angel Yes. I think in my opinion we can say. Because the particle placed here is in negative potential energy . If we provide that much of positive energy then it will neutralize each other and particle will be free from that Well. And if you give more velocity than the answer than also it will escape.

A Former Brilliant Member - 1 year, 1 month ago

BTW, there's a python package that allows you to compute the numerical approximation of an integral .

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh Hii . Sir can I do this integrals in mobile also??

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

Yes.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh Hii. Sir In this website where should I go to evaluate the Integrals? Well Sir please can you evaluate this integral

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Do you know how to use python? It's better to start learning how to solve simple integrals like 0 1 x 2 d x \int_0^1 x^2 \, dx in python first, then move up to larger iterated integrals.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh No sir i don't know python,but i want to learn .Upto that level so i can evaluate that integral. . Can i start learning it in my mobile phone also??

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member I'm pessimistic that you can learn any (decent) coding from your smartphone alone.

Try learning it on a desktop/laptop, which is much easier since you get to be more hands-on with your code.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh What Steven did is the most primitive method (I'm not saying it's bad, I just meant that there's a better way of solving it), but he gets the job done.

I would highly recommend learning Python as it's the most legible programming language out there...

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh Doing it my way, I don't have to form a complicated analytical expression for the integrand. Which is often very convenient. What do you mean by "better"?

Steven Chase - 1 year, 1 month ago

Log in to reply

@Steven Chase Better as in "Just call the function, write the integrant and it will compute for you."

Personally, your solution seems to be unnecessarily complicated as you spliced the whole integral into many rectangles like Riemann Sum and do the whole rigmarole process.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh Not having to write the integrand explicitly makes it all worthwhile, in my opinion. Anyway, to each his own.

Steven Chase - 1 year, 1 month ago

Log in to reply

@Steven Chase No problem. Cheers!

Pi Han Goh - 1 year, 1 month ago

@Steven Chase @Steven Chase Sir exactly we are solving physics. And we don't want to form critically hard expressions.

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member If that's the case, then I retract what I said.

I was under the impression that the integral that we're looking for can be easily constructed.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh which integral?

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member The integral that gives the answer to this question? Or did I misread the question?

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh I am getting confused, time by time? Which question did you misread??

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Looking at Steven's solution, I was under the impression that he is computing an integral that can be expressed in simple terms, hence my very first comment above.

But Steven said that it's not necessary to do so. You even backed him up on it. So I thought I have misread this (Brilliant) problem statement. Hence, I will admit that I'm wrong and retract what I said, if I misread this (same) problem statement.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh Sir. Oh! it is not a matter of sorry. We people are just discussing things. And I am not backed him up. I was just telling the truth. Hope you understand and I hope you, me and @Steven Chase sir will have good relationship.I think you are behaving in a sarcastic way. Cheers!

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Not at all. I'm just giving my two cents. Obviously there is a possibility that I misread the (Brilliant) problem statement, as I'm not so good in physics.

Take care!

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh Sir which (Brilliant) problem statement? I think there is no statement in problem in which we have to follow a particular method , we can solve it from anywhere using analytical method or code.

Take care!

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Brilliant problem statement = Find the speed the particle is required to escape through the field forever.


I do not particularly care how it was solved actually....

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh Sir so which problem statement you were talking about from last 1 hr ? I think this discussion between us is the most critical discussion of my whole life.

A Former Brilliant Member - 1 year, 1 month ago

@Pi Han Goh @Pi Han Goh Ok Sir I just installed a python app from google play store and try to integrate your expression but can't get the answer 1 3 \frac{1}{3} Here is my work.

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member You need to install the scipy python package first. The online compiler on this site wouldn't do.

I'd suggest that you start from the ground up and install your own IDE, like VScode or Sublime on your computer.

I'm not sure if there's any IDE that is suitable for tablet / smartphones.

Pi Han Goh - 1 year, 1 month ago

@A Former Brilliant Member Also, it's

1
print(ans)

>> Steven used an older /archaic Python version, so he is able to run this code.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh Also, if you just started learning LaTeX \LaTeX , I would recommend that you start doing simple things like creating loops and modifying lists and dictionaries.

Don't go into the deep end first by solving integrals in Python immediately.

Pi Han Goh - 1 year, 1 month ago

@Neeraj Anand Badgujar ,

you said: "Sir so which problem statement you were talking about from last 1 hr ? I think this discussion between us is the most critical discussion of my whole life."

The problem statement that I'm referring to all along is "Find the speed the particle is required to escape through the field forever."

Like I said, I'm under the impression that the integral needed to solve the problem statement can be expressed in simple terms, hence my very first comment above: "BTW, there's a python package that allows you to compute the numerical approximation of an integral ."

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh Okayy!! Finaly I got it! BTW. Sir can you parametrise the ellipsoid , and what will be its d A dA area??

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

I'm sorry, I'm not able to help you. My grasp of the science concepts isn't strong, I'm afraid that I might unintentionally give you a wrong answer.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh Okay No problem. In which field you are strong because,I have doubts in all field in maths and science. Then I will ask??

A Former Brilliant Member - 1 year, 1 month ago

@Pi Han Goh my line which you have highlighted above. I was just kidding. Don't take it seriously. C h e e r s ! \textcolor{limegreen}{Cheers! }

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

No problem at all!

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh Okay No problem. In which field you are strong because,I have doubts in all field in maths and science. Then I will ask??

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Pure recreational math.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh I have not heard of this topic yet. I think its related to entertainment. But I will try my best. Here is the question.

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Recreational math = Mainly math puzzles, mixed with some basic undergraduate algebra, probability, statistics, number theory, and some calculus.

SInce g ( x ) : = ( x 2 ) 5 + 3 ( x 4 ) 7 g(x) := (x-2)^5 + 3(x-4)^7 is an increasing and continuous function for x > 0 x>0 , then 2 = f ( 3 ) < f ( x ) < f ( 5 ) = 246 -2 = f(3) < f(x) < f(5) = 246 .

Thus, all the integer values of g ( x ) = f ( x ) \lfloor g(x) \rfloor = f(x) are 1 , 0 , 1 , 245 -1, 0, 1, \ldots 245 . The answer is (d) .

You can visualize the graph of f ( x ) f(x) by first plotting in Desmos .

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh thanks for the solution. I have one more question [ 4 , 3 , 2 , 1 , 3 , 2 , 3 , ? ] [4, 3,2,1,3,2,3,?] Fill the question mark??

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member I personally hate all this "what comes next?" type of question, because there are no real fixed rules to questions like this. So I'm afraid I won't be giving a proper answer to this question.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh Yes because it has upto infinte variations. But I will give you hint. Hint- (This question is related to you. Your identity)

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Once again, I'm opting not to answer questions like this, as it doesn't interest me.

Pi Han Goh - 1 year, 1 month ago

Log in to reply

@Pi Han Goh @Pi Han Goh okay sorry.

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Hi Neeraj, I don't mean to sound dismissive or rude here, but this site is not a place for you to post your homework questions (or equivalent) without showing any attempts.

If you would like to ask how to solve a question, try posting it here , and make sure you show the attempts that you have done and show where you are stuck.

For this latest question, consider Descartes' rule of signs .

Pi Han Goh - 1 year, 1 month ago
Karan Chatrath
Apr 27, 2020

Nice problem. However, I find the notion of 'negative mass' difficult to interpret.

Consider the curve y 1 = sin x y_1=\sin{x} . Mass of an elementary arc length near a point ( x , y 1 ) (x,y_1) is:

d m 1 = d x 1 + cos 2 x dm_1 = - dx\sqrt{1+\cos^2{x}}

Gravitational potential energy due to this element is:

d V 1 = G m d m 1 ( x 2 ) 2 + y 1 2 dV_1 = -\frac{Gm \ dm_1}{\sqrt{(x-2)^2 + y_1^2}}

Same for the curve y 2 = sin x y_2=\sin{x} . Mass of an elementary arc length near a point ( x , y 2 ) (x,y_2) is:

d m 2 = d x 1 + sin 2 x dm_2 = dx\sqrt{1+\sin^2{x}}

Gravitational potential energy due to this element is:

d V 2 = G m d m 2 ( x 2 ) 2 + y 2 2 dV_2 = -\frac{Gm \ dm_2}{\sqrt{(x-2)^2 + y_2^2}}

Potential energy due to both elements:

d V = d V 1 + d V 2 = ( 1 + cos 2 x ( x 2 ) 2 + sin 2 x 1 + sin 2 x ( x 2 ) 2 + cos 2 x ) d x dV = dV_1 + dV_2 = \left(\sqrt{\frac{1+\cos^2{x}}{(x-2)^2 +\sin^2{x}}} -\sqrt{\frac{1+\sin^2{x}}{(x-2)^2 +\cos^2{x}}}\right)dx

Total potential energy due to both curves is:

V = 0 2 π ( 1 + cos 2 x ( x 2 ) 2 + sin 2 x 1 + sin 2 x ( x 2 ) 2 + cos 2 x ) d x V = \int_{0}^{2\pi} \left(\sqrt{\frac{1+\cos^2{x}}{(x-2)^2 +\sin^2{x}}} -\sqrt{\frac{1+\sin^2{x}}{(x-2)^2 +\cos^2{x}}}\right)dx

Now, for the particle to just escape the gravitational field, it must be projected with a speed such that its final energy becomes zero. Applying the energy conservation principle gives:

V + v 2 2 = 0 V + \frac{v^2}{2} = 0 v = 2 0 2 π ( 1 + cos 2 x ( x 2 ) 2 + sin 2 x 1 + sin 2 x ( x 2 ) 2 + cos 2 x ) d x 1.76 \boxed{v = \sqrt{-2\int_{0}^{2\pi} \left(\sqrt{\frac{1+\cos^2{x}}{(x-2)^2 +\sin^2{x}}} -\sqrt{\frac{1+\sin^2{x}}{(x-2)^2 +\cos^2{x}}}\right)dx} \approx 1.76}

@Karan Chatrath Ha Ha Ha well! I doesn't know much about negative mass. Why does you feel negative mass difficult to interpret?? Well the real story is that i was making this question for Electricity and magnetism. After that i think if I place positive and negative charge. Can we write net electric potential equal to kinetic energy of that particle. In that case I have to give mass of particle also???

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

Mass is a way of quantifying the amount of matter contained by anything. A mass of zero indicates the absence of any matter in a given space. So what does a negative mass physically indicate? I do not know..

Karan Chatrath - 1 year, 1 month ago

Log in to reply

@Karan Chatrath Sir if I say you that it's compulsory say 2-3 line on negative mass. Let we consider that negative mass exist, then what it would be. First you share your opinion with me then I will share with you. @Steven Chase Sir you are also welcome to share your opinion and it's compulsory. N o No E x c u s e Excuse Later on I will share my official opinion.

A Former Brilliant Member - 1 year, 1 month ago

Log in to reply

@A Former Brilliant Member Operationally, if you push on a negative mass, it accelerates in a direction opposite to your push.

Steven Chase - 1 year, 1 month ago

Log in to reply

@Steven Chase @Steven Chase Okay! That looks weird. Well! Can you give me physically feel??of negative mass

A Former Brilliant Member - 1 year, 1 month ago

@Karan Chatrath Can you help me in finding the moment of inertia of ellipse about z z axis?

A Former Brilliant Member - 1 year, 1 month ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...