A rod is connected to two springs as shown below. System parameters are given in the diagram.
If the system is in stasis, what is ( x 3 + y 3 + x 4 + y 4 ) , subject to constraints ( x 3 > 0 ) and ( y 3 < 0 ) ?
Note: L 1 and L 2 are the natural spring lengths. Points ( x 1 , y 1 ) and ( x 2 , y 2 ) are fixed in place.
Bonus: There are other (less intuitive) solutions as well. Can you find them?
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.
Very interesting method. Thanks for sharing
Consider the given system:
The total potential energy of the system is:
V = V g r a v + V k 1 + V k 2
V = m g ( 2 y 3 + y 4 ) + 2 1 k 1 ( x 3 2 + y 3 2 − L 1 ) 2 + 2 1 k 2 ( ( x 4 − 3 ) 2 + ( y 4 − 5 ) 2 − L 2 ) 2
Also, the length of the rod is a constraint equation which is:
C = ( x 4 − x 3 ) 2 + ( y 4 − y 3 ) 2 − L = 0
The system is in equilibrium when the potential energy of the system is a minimum. In other words, a constrained optimization problem must be solved to obtain the equilibrium configuration.
The optimization problem is: Minimise:
F = V + λ C
Subject to x 3 > 0 and y 3 < 0 . Here λ is an unknown Lagrange multiplier.
The next step involves computing partial derivatives and equating them to zero. This gives five equations:
∂ x 3 ∂ F = 0 ∂ y 3 ∂ F = 0 ∂ x 4 ∂ F = 0 ∂ y 4 ∂ F = 0 ∂ λ ∂ F = 0
These five equations yield a system of nonlinear equations that have multiple solutions. The required solution would satisfy the additional constraints x 3 > 0 and y 3 < 0 . Of course, the optimization problem could have been formulated accounting for the inequality constraints and thereby dealing with two additional Lagrange multipliers. The optimal solution would then need to satisfy the KKT conditions. However, this has not been done.
The manner in which these equations are solved is iterative. The algorithm used is the Newton-Raphson method the details of which are omitted as well. An appropriate start point must be chosen. Different start points are likely to yield different solutions. The solution satisfying the additional constraints are:
x 3 = 0 . 5 4 7 5 ; y 3 = − 1 . 6 2 4 9 ; x 4 = 2 . 2 7 9 6 ; y 4 = 0 . 8 2 4 6
Of course, a second derivative test would need to be carried out to see whether the optimum point corresponds to a minimum. The system of equations would yield other solutions which are non-intuitive as well. These most likely correspond to unstable equilibria. In other words, the potential energy attains a local maximum value at those points.
If there happens to be an easier way of solving this problem, I am keen on knowing. For convenience, I have left out the gory details of the derivative crunching.
@Steven Chase Nice problem! I was wondering if you solved it in a similar manner or used a force-torque balance.
Problem Loading...
Note Loading...
Set Loading...
@Karan Chatrath has given a nice summary of the Newton Raphson technique. This method converges very powerfully, but the disadvantage is that it requires a great deal of symbolic manipulation. An alternative approach is a hill-climbing (or valley-descent) algorithm. This algorithm requires a great deal of processing, but it involves only elementary math operations. The broad details are:
1) The unknown quantities are ( x 3 , y 3 , θ ) , where θ is the angle of the rod with respect to the positive x axis
2) Randomly mutate the ( x 3 , y 3 , θ ) coordinates in order to minimize a "residual"
3) The residual is formed as ∣ F x ∣ + ∣ F y ∣ + ∣ τ ∣ where ( F x , F y , τ ) are the net x force, net y force, and net torque
4) After many iterations and mutations, the residual is brought nearly to zero, yielding a stasis point
I have attached graphs of three different stasis configurations. The first one is the "natural" configuration that one would find in a laboratory if one physically did the experiment. This is a stable equilibrium point. The other two are likely to be unstable equilibria, which would be disrupted and undone by any small perturbation. These would consequently not be easily observable in a laboratory. Coordinates for these configurations are included within the attached code file.