Projectile to hit x,y from x,y given max height

AI Thread Summary
The discussion focuses on calculating the initial velocities required to hit a specific point (190, 65) given a maximum height of 100. The user outlines their approach using kinematic equations to determine initial y and x velocities based on gravity and the trajectory. A suggested method involves formulating a quadratic equation to represent the projectile's path and deriving coefficients to find the necessary velocities. The conversation also emphasizes the importance of showing work and attempts at the solution for further assistance. The thread highlights the need for clarity and adherence to forum rules regarding problem-solving.
Ehdrian
Messages
1
Reaction score
0
Hello!

This is not homework :-)

I can figure this out:
Code:
                                   y = 100 = max height
0,0                                                  200,0
------------------------------------------------------------

By getting the initial y velocity = sqrt(2 * gravity * max height)
and time to peak height = initial_y_velocity / gravity
and the initial x velocity = distance_x / (time_to_peak_height * 2);

However, I need to hit a point with elevation such as:
Code:
                           y = 100 = max height
                                           190,65
                                           -----------------

0,0                                                                         
-------------------------------------------

So, given max height, start point, and end point. What is my initial velocity x, and initial velocity y? No wind, and gravity is constant.

I've really come to a stand still on this! Any help would be great.

Adrian
 
Physics news on Phys.org
I had a little bit of trouble understanding this but I'm assuming you want the initial velocity that gives a max height of 100 and crosses the point (190,65).

There are probably several approaches but here is what comes to mind:

1) Write y = ax^2 + bx (no need for an extra + c since y(x=0) = 0)

2) Note that y_max = 100 so y(x=-b/2a) = 100. This gives an equation for b in terms of a.

3) set 65 = a*(190)^2 + b*(190), substitute b with the result of step 2. This gives you the value of a, and from part 2, you can find b.

4) Now you know the path exactly, from here, you can v_x by considering the max x distance (-b/a). You already know v_y from the max height.

Remember that there are two solutions!

Does this help?
 
Ehdrian said:
Hello!

This is not homework :-)

I can figure this out:
Code:
                                   y = 100 = max height



0,0                                                  200,0
------------------------------------------------------------

By getting the initial y velocity = sqrt(2 * gravity * max height)
and time to peak height = initial_y_velocity / gravity
and the initial x velocity = distance_x / (time_to_peak_height * 2);

However, I need to hit a point with elevation such as:
Code:
                           y = 100 = max height
                                           190,65
                                           -----------------

0,0                                                                         
-------------------------------------------

So, given max height, start point, and end point. What is my initial velocity x, and initial velocity y? No wind, and gravity is constant.

I've really come to a stand still on this! Any help would be great.

Adrian

It is still homework/coursework-like, so it belongs in the HH forums, where I've moved it.

Also, the same rules apply -- you must show us your attempt at a solution, and list the relevant equations. Please show us that work so that we can offer some tutorial advice.
 
Kindly see the attached pdf. My attempt to solve it, is in it. I'm wondering if my solution is right. My idea is this: At any point of time, the ball may be assumed to be at an incline which is at an angle of θ(kindly see both the pics in the pdf file). The value of θ will continuously change and so will the value of friction. I'm not able to figure out, why my solution is wrong, if it is wrong .
Thread 'Correct statement about a reservoir with an outlet pipe'
The answer to this question is statements (ii) and (iv) are correct. (i) This is FALSE because the speed of water in the tap is greater than speed at the water surface (ii) I don't even understand this statement. What does the "seal" part have to do with water flowing out? Won't the water still flow out through the tap until the tank is empty whether the reservoir is sealed or not? (iii) In my opinion, this statement would be correct. Increasing the gravitational potential energy of the...
Thread 'A bead-mass oscillatory system problem'
I can't figure out how to find the velocity of the particle at 37 degrees. Basically the bead moves with velocity towards right let's call it v1. The particle moves with some velocity v2. In frame of the bead, the particle is performing circular motion. So v of particle wrt bead would be perpendicular to the string. But how would I find the velocity of particle in ground frame? I tried using vectors to figure it out and the angle is coming out to be extremely long. One equation is by work...

Similar threads

Back
Top