I have a block of Python. How do I modify it to solve this classical mechanics problem (questions are in the picture)? import matplotlib.pyplot as plt import numpy as np import os # This solves for x such that 1+tanh(x)=alpha *x # The program first prompts for alpha print("This find zeros of function 1+tanh(x)-alpha*x") alpha=float(input("Enter alpha: ")) # This defines a function F(x) and its derivative Fprime(x) def GetFFprime(x):   F=1.0+np.tanh(x)-alpha*x   Fprime=1.0/(np.cosh(x)*np.cosh(x)) -alpha   return F,Fprime xguess=float(input("Guess a value of x: ")) yarray=[]      # Make arrays with no elements xarray=[] xarray.append(xguess)  # Add element with guess for first value yarray.append(0.0) biggestx=xarray[0] offby=1.0E20 # used to check convergence narray=0 while offby>1.0E-7 and narray<10:   yarray[narray],yprime=GetFFprime(xarray[narray])   print("x=",xarray[narray]," y=",yarray[narray])   offby=np.fabs(yarray[narray])   xarray.append(0.0)   yarray.append(0.0)   xarray[narray+1]=xarray[narray]-yarray[narray]/yprime   if xarray[narray+1] > biggestx:   #This is usedfor plot     biggestx=xarray[narray+1]   narray+=1 yarray[narray],yprime=GetFFprime(xarray[narray]) print("----------------\n Final: x=",xarray[narray]," y=",yarray[narray]) # Plot the points plt.plot(xarray,yarray,linestyle='None',markersize='5',marker='s',markerfacecolor='none',markeredgecolor='red') # Plot 1+tanh(x), -alpha*x and 1+tanh(x)-alpha*x nplot=50 delx=biggestx/nplot x=np.zeros(nplot+1,dtype='float') y1=np.zeros(nplot+1,dtype='float') y=np.zeros(nplot+1,dtype='float') for ix in range(0,nplot+1):   x[ix]=ix*delx   y1[ix]=1.0+np.tanh(x[ix])   y[ix]=y1[ix]-alpha*x[ix] plt.plot(x,y1,linestyle='-',lw=1,color='red',marker=None,label="$1+\\tanh(x)$") plt.plot(x,alpha*x,linestyle='-',lw=1,color='green',marker=None,label="$\\alpha x$") plt.plot(x,y,linestyle='-',lw=2,color='blue',marker=None,label="$1+\\tanh(x)-\\alpha x$") # Add some dashed lines for visual hline_y=[0.0,0.0] hline_x=[0.0,nplot*delx] plt.plot(hline_x,hline_y,linestyle='--',lw=1,color='k',marker=None) vline_y=[0.0,alpha*xarray[narray]] vline_x=[xarray[narray],xarray[narray]] plt.plot(vline_x,vline_y,linestyle='--',lw=1,color='k',marker=None) plt.legend() sometext="$\\alpha=$"+str(alpha)+"\n$x=$"+str(xarray[narray]) plt.text(0.0,y[nplot],sometext) plt.xlabel('x') plt.ylabel('$1.0+\\tanh(x)-\\alpha x$') #plt.show() # Or make pdf file plt.savefig('newton_template.pdf',format='pdf') # if you want to look at pdf file  os.system("open newton_template.pdf") # This can replace "plt.show()" --works on Mac or Linux quit()

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

I have a block of Python. How do I modify it to solve this classical mechanics problem (questions are in the picture)?

import matplotlib.pyplot as plt
import numpy as np
import os

# This solves for x such that 1+tanh(x)=alpha *x
# The program first prompts for alpha


print("This find zeros of function 1+tanh(x)-alpha*x")
alpha=float(input("Enter alpha: "))

# This defines a function F(x) and its derivative Fprime(x)
def GetFFprime(x):
  F=1.0+np.tanh(x)-alpha*x
  Fprime=1.0/(np.cosh(x)*np.cosh(x)) -alpha
  return F,Fprime

xguess=float(input("Guess a value of x: "))
yarray=[]      # Make arrays with no elements
xarray=[]
xarray.append(xguess)  # Add element with guess for first value
yarray.append(0.0)
biggestx=xarray[0]

offby=1.0E20 # used to check convergence
narray=0
while offby>1.0E-7 and narray<10:
  yarray[narray],yprime=GetFFprime(xarray[narray])
  print("x=",xarray[narray]," y=",yarray[narray])
  offby=np.fabs(yarray[narray])
  xarray.append(0.0)
  yarray.append(0.0)
  xarray[narray+1]=xarray[narray]-yarray[narray]/yprime
  if xarray[narray+1] > biggestx:   #This is usedfor plot
    biggestx=xarray[narray+1]
  narray+=1

yarray[narray],yprime=GetFFprime(xarray[narray])
print("----------------\n Final: x=",xarray[narray]," y=",yarray[narray])
# Plot the points
plt.plot(xarray,yarray,linestyle='None',markersize='5',marker='s',markerfacecolor='none',markeredgecolor='red')

# Plot 1+tanh(x), -alpha*x and 1+tanh(x)-alpha*x
nplot=50
delx=biggestx/nplot
x=np.zeros(nplot+1,dtype='float')
y1=np.zeros(nplot+1,dtype='float')
y=np.zeros(nplot+1,dtype='float')
for ix in range(0,nplot+1):
  x[ix]=ix*delx
  y1[ix]=1.0+np.tanh(x[ix])
  y[ix]=y1[ix]-alpha*x[ix]
plt.plot(x,y1,linestyle='-',lw=1,color='red',marker=None,label="$1+\\tanh(x)$")
plt.plot(x,alpha*x,linestyle='-',lw=1,color='green',marker=None,label="$\\alpha x$")
plt.plot(x,y,linestyle='-',lw=2,color='blue',marker=None,label="$1+\\tanh(x)-\\alpha x$")
# Add some dashed lines for visual
hline_y=[0.0,0.0]
hline_x=[0.0,nplot*delx]
plt.plot(hline_x,hline_y,linestyle='--',lw=1,color='k',marker=None)
vline_y=[0.0,alpha*xarray[narray]]
vline_x=[xarray[narray],xarray[narray]]
plt.plot(vline_x,vline_y,linestyle='--',lw=1,color='k',marker=None)
plt.legend()
sometext="$\\alpha=$"+str(alpha)+"\n$x=$"+str(xarray[narray])
plt.text(0.0,y[nplot],sometext)
plt.xlabel('x')
plt.ylabel('$1.0+\\tanh(x)-\\alpha x$')

#plt.show()
# Or make pdf file
plt.savefig('newton_template.pdf',format='pdf')
# if you want to look at pdf file 
os.system("open newton_template.pdf") # This can replace "plt.show()" --works on Mac or Linux
quit()

Write a program that when run from the command line prompts the user to enter vo
in m/s and 80 in degrees for the projectile's initial velocity, then prompts the user for the drag
term y in s-¹. The program should then solve for the time at which the projectile returns to
the horizontal, y = 0, using Newton's method.
Assume the cannon is situated on a cliff of height h in meters. Write a second version
that additionally prompts for the height of the cannon above the plain over which it is aimed.
Have the program solve for the range of the cannon and print out the answer.
Transcribed Image Text:Write a program that when run from the command line prompts the user to enter vo in m/s and 80 in degrees for the projectile's initial velocity, then prompts the user for the drag term y in s-¹. The program should then solve for the time at which the projectile returns to the horizontal, y = 0, using Newton's method. Assume the cannon is situated on a cliff of height h in meters. Write a second version that additionally prompts for the height of the cannon above the plain over which it is aimed. Have the program solve for the range of the cannon and print out the answer.
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY