[go: up one dir, main page]

0% found this document useful (0 votes)
8 views1 page

Department of Mathematics Lab Questions Eee

The document outlines lab questions for the Department of Mathematics for the 2023-24 academic year, specifically for Stream EEE. It includes tasks such as developing Python programs to compute divergence, evaluate integrals using Green's theorem, and find Laplace transforms, among others. The questions also involve numerical methods like the Regula-falsi method and Runge-Kutta method for solving equations.

Uploaded by

Nisarga Dangi
Copyright
© © All Rights Reserved
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
0% found this document useful (0 votes)
8 views1 page

Department of Mathematics Lab Questions Eee

The document outlines lab questions for the Department of Mathematics for the 2023-24 academic year, specifically for Stream EEE. It includes tasks such as developing Python programs to compute divergence, evaluate integrals using Green's theorem, and find Laplace transforms, among others. The questions also involve numerical methods like the Regula-falsi method and Runge-Kutta method for solving equations.

Uploaded by

Nisarga Dangi
Copyright
© © All Rights Reserved
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

Department of Mathematics

2023-24 (Even)

Lab questions for Stream EEE

1, Develop a Python Program to

a) To find divergence of 𝑭 = 𝒙𝟐 𝒚𝒛𝒊 + 𝒚𝟐 𝒛𝒙𝒋 + 𝒛𝟐 𝒙𝒚 𝒌


b) Using Green’s theorem, evaluate integral 𝒐𝒇 [(𝒙𝒚 + 𝒚𝟐 )𝒅𝒙 + 𝒙𝟐 𝒅𝒚], where c is the closed
curve bounded 𝒃𝒚 𝒚 = 𝒙 𝒂𝒏𝒅 𝒚 = 𝒙𝟐 .

2. Using the modern mathematical tool write the code to find the dimension of subspace

Spanned by the vectors (1, 2,3) (2,3,1) and (3,1,2)

3. Develop a Python Program to represent the Laplace transform of 𝒇(𝒕) = 𝒔𝒊𝒏(𝟐 ∗ 𝒕) both in time

and frequency domains.

4. Find the Laplace transform of 𝒄𝒐𝒔 (𝟒𝒕). By using Mathematical tool write the code.
𝒂
5. Find the inverse Laplace transform of 𝒔𝟐 +𝒂𝟐

6. Develop a Python Program to find the Laplace transform of the convolution of the functions

𝒇(𝒕) = 𝒕 𝒂𝒏𝒅 𝒈(𝒕) = 𝒆𝒕 .

7. Develop a Python Program to obtain a root of the equation 𝒙 𝟑 − 𝟐𝒙 − 𝟓 = 𝟎 between 2 and 3 by

Regula-falsi method. Correct to 3 decimal places.

8. Develop a Python Program to use Newtons forward interpolation to obtain the interpolating
polynomial and hence calculate 𝒚(𝟐) for the following

X 1 3 5 7 9

Y 6 10 62 210 502

9. Develop a Python Program to solve 𝒚′ + 𝟒𝒚 = 𝒙𝟐 with initial conditions y(0) = 1 using Taylor series
method at x = 0.1, 0.2.

10. Develop a Python Program to apply the Runge-Kutta method to find the solution of

𝒅𝒚/𝒅𝒙 = 𝟏 + (𝒚/𝒙) 𝒂𝒕 𝒚(𝟐) 𝒕𝒂𝒌𝒊𝒏𝒈 𝒉 = 𝟎. 𝟐. 𝑮𝒊𝒗𝒆𝒏 𝒕𝒉𝒂𝒕 𝒚(𝟏) = 𝟐

You might also like