100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Solutions for Mathematical Methods using Python, 1st Edition Pagonis (All Chapters included) $29.49   Add to cart

Exam (elaborations)

Solutions for Mathematical Methods using Python, 1st Edition Pagonis (All Chapters included)

 26 views  0 purchase
  • Course
  • Programming for python language..
  • Institution
  • Programming For Python Language..

Complete Solutions Manual for Mathematical Methods using Python, 1st Edition by Vasilis Pagonis; Christopher Wayne Kulp ; ISBN13: 9781032278360. (Full Chapters included Chapter 1 to 13).... Chapter 1: Introduction to Python. Chapter 2: Differentiation. Chapter 3: Integration. Chapter 4: Vectors. C...

[Show more]

Preview 4 out of 645  pages

  • March 20, 2024
  • 645
  • 2023/2024
  • Exam (elaborations)
  • Questions & answers
  • Programming for python language..
  • Programming for python language..
avatar-seller
mizhouubcca
Mathematical Methods using Python,
1st Edition by Vasilis Pagonis



Complete Chapter Solutions Manual
are included (Ch 1 to 13)




** Immediate Download
** Swift Response
** All Chapters included

, i i


i i




Introduction to Python
1
1.1 END OF CHAPTER PROBLEMS
1. A uniform distribution of random numbers

Create 100 random numbers x from a uniform distribution using the random() function
in Python. Plot these 100 random numbers on the xy-plane, and also in the form of a
histogram. Find the average and the standard deviation of these 100 numbers.
Solution:
We use the random(100) function from the random() library in NumPy, to create the
Numpy array with 100 random numbers.
The average of the 100 numbers is 0.529, which is close to the expected value of 0.5. The
distribution in the histogram plot looks almost flat, as expected for a random distribution.

import numpy as np
import matplotlib.pyplot as plt

print('-'*28,'CODE OUTPUT','-'*29,'\n')

plt.subplot(1,2,1)
rnd=np.random.random(100)
plt.plot(rnd,'ro')
plt.xlabel('Index')
plt.ylabel('Random value')
plt.title('(a)')

plt.subplot(1,2,2)
plt.hist(rnd);
plt.xlabel('N')
plt.ylabel('Distribution')
plt.title('(c)')

plt.tight_layout()
plt.show()

print('Mean = ',round(np.mean(rnd),3))

print('Standard deviation = ',round(np.std(rnd),3))

---------------------------- CODE OUTPUT -----------------------------




1

i i


i i

, i i


i i




2 Introduction to Python

(a) (c)
1.0 14

12
0.8
10
Random value




0.6




Distribution
8

0.4 6

4
0.2
2
0.0
0
0 25 50 75 100 0.00 0.25 0.50 0.75 1.00
Index N

Mean = 0.52
Standard deviation = 0.294



Figure 1.1 A two panel graphic from Problem 1.1, showing 100 random numbers from a uniform
distribution on the left, and their histogram on the right.




i i


i i

, i i


i i




END OF CHAPTER PROBLEMS 3

2. A Gaussian distribution of random numbers

Create 100 random numbers from a Gaussian distribution using the random.normal() func-
tion in Numpy, and plot them as a histogram. Find their average and standard deviation.
Solution:
We use the normal(3,1, 100) function from the random() library in NumPy, to create
the Numpy array with 100 random numbers from a Gaussian distribution located at x = 3
and with a standard deviation of σ =1.
The distribution of numbers in the histogram plot shows the expected bell-shape curve,
and the mean of the 100 numbers is < x >=2.989 very close to the expected value of
< x >=3. Similarly, the standard deviation of the 100 numbers is σ =1.097 very close to
the expected value of σ =1.

import numpy as np
import matplotlib.pyplot as plt
print('-'*28,'CODE OUTPUT','-'*29,'\n')

def f(rnd):
return np.mean(rnd), np.std(rnd)

plt.subplot(1,2,1)
rnd=np.random.normal(3,1,100)
plt.plot(rnd,'ro')
plt.xlabel('N')
plt.ylabel('Random value')
plt.title('(a)')

plt.subplot(1,2,2)
plt.hist(rnd,10);
x=np.linspace(0,7,100)
plt.title('(b)')
plt.xlabel('N')
plt.ylabel('Distribution of values')
plt.xlim(0,7);

plt.title('(b)')
plt.show()

print('Mean = ',round(np.mean(rnd),3))

print('Standard deviation = ',round(np.std(rnd),3))

---------------------------- CODE OUTPUT -----------------------------




i i


i i

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller mizhouubcca. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $29.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

74735 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$29.49
  • (0)
  Add to cart