We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
1.
Write a Python program for the Rank of a Matrix
𝟎 𝟐 𝟑 𝟒 [𝟐 𝟑 𝟓 𝟒] 𝟒 𝟖 𝟏𝟑 𝟏𝟐 2. Write a Python program on Testing Consisency of the following system of equations x+2y-z=0 2x+y+4z=0 3x+3y+4z=0
3. a. Write a Python program for Plotting a line
b. Write a Python program for plotting Cardiode r=3(1+cos𝜽)
4. Write a python program for finding the Radius of Curvature
r=asin(nt) at t=pi/2 and n=1 5. Write a Pythom program for proving that if u=e^x(xcosy-ysiny) then uxx+uyy=0
6. Write a Python program for finding the Jacobian of u,v,w w.r.t
x,y,z where u=x*y/z, v=y*z/x, w=z*x/y
7. Write a Python program for finding the Jacobian of u,v,w w.r.t
x,y,z where u=x+3*y**2-z**3 v=4*x**2*y*z w=2*z**2-x*y substituting the values x=1, y=-1, z=0 8. Python Program for Solution of First Order Differential Equation -k*y k=0.3, y(0)=5
9. Python program to find Maxima and Minima of a given function
f = x**2 + y**2 + 3*x - 3*y + 4
10. A.Write a python program for double integeration
𝟏 √𝒙 ∫𝟎 ∫𝒙 (𝒙𝟐 + 𝒚𝟐 )𝒅𝒚𝒅𝒙 B. Write a python program for Triple integeration 𝟏 √𝟏−𝒙 √𝟏−𝒙𝟐− 𝒚𝟐 ∫𝟎 ∫𝟎 ∫𝟎 (𝒙𝒚𝒛)𝒅𝒙𝒅𝒚𝒅𝒛