In [33]:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
import scipy.optimize as opt
The following potential is often used in Physics and other fields to describe symmetry breaking and is often known as the "hat potential":
$$ V(x) = -a x^2 + b x^4 $$Write a function hat(x,a,b)
that returns the value of this function:
In [2]:
def hat(x,a,b):
return (-a*x**2 + b*x**4)
In [3]:
assert hat(0.0, 1.0, 1.0)==0.0
assert hat(0.0, 1.0, 1.0)==0.0
assert hat(1.0, 10.0, 1.0)==-9.0
Plot this function over the range $x\in\left[-3,3\right]$ with $b=1.0$ and $a=5.0$:
In [4]:
a = 5.0
b = 1.0
In [5]:
x = np.linspace(-3,3,1000)
plt.plot(x, hat(x,a,b))
Out[5]:
In [6]:
assert True # leave this to grade the plot
Write code that finds the two local minima of this function for $b=1.0$ and $a=5.0$.
scipy.optimize.minimize
to find the minima. You will have to think carefully about how to get this function to find both minima.
In [41]:
min1 = opt.minimize(hat, x0 =-1.7,args=(a,b))
min2=opt.minimize(hat, x0 =1.7, args=(a,b))
print(min1,min2)
In [40]:
print('Our minimas are x=-1.58113883 and x=1.58113882')
In [39]:
plt.figure(figsize=(7,5))
plt.plot(x,hat(x,a,b), color = 'b',label='hat potential')
plt.box(False)
plt.title('Hat Potential')
plt.scatter(x=-1.58113883,y=hat(x=-1.58113883,a=5,b=1), color='r', label='min1')
plt.scatter(x=1.58113883,y=hat(x=-1.58113883,a=5,b=1), color='r',label='min2')
plt.legend()
Out[39]:
In [ ]:
assert True # leave this for grading the plot
To check your numerical results, find the locations of the minima analytically. Show and describe the steps in your derivation using LaTeX equations. Evaluate the location of the minima using the above parameters.
Take the derivative
set derivative to 0 and solve for x
critical points are $$x = 0 $$ and $$ x=\sqrt\frac{10}{4} $$ and $$ x=-\sqrt\frac{10}{4} $$
Check concavity by taking the second derivative
At x = 0, concavity is negative so local maxima is at x=0.
At x= $$ \sqrt\frac{10}{4} $$ concavity is positive, so they are the local minimas.
In [ ]: