wget https://raw.githubusercontent.com/aidenhuynh/CS_Swag/master/_notebooks/2022-11-30-randomvalues.ipynb

Libraries

  • A library is a collection of precompiled codes that can be used later on in a program for some specific well-defined operations.
  • These precompiled codes can be referred to as modules. Each module contains bundles of code that can be used repeatedly in different programs.
  • A library may also contain documentation, configuration data, message templates, classes, and values, etc.

Why are libraries important?

  • Using Libraries makes Python Programming simpler and convenient for the programmer.
  • One example would be through looping and iteration, as we don’t need to write the same code again and again for different programs.
  • Python libraries play a very vital role in fields of Machine Learning, Data Science, Data Visualization, etc.

A few libraries that simplify coding processes:

  • Pillow allows you to work with images.
  • Tensor Flow helps with data automation and monitors performance.
  • Matplotlib allows you to make 2D graphs and plots.

The AP Exam Refrence Sheet itself is a library! Screenshot 2022-12-11 221853

Hacks:

Research two other Python Libraries NOT DISCUSSED DURING LESSON and make a markdown post, explaining their function and how it helps programmers code.

API’s

  • An Application Program Interface, or API, contains specific direction for how the procedures in a library behave and can be used.
  • An API acts as a gateway for the imported procedures from a library to interact with the rest of your code.

Activity: Walkthrough with NumPy

  • Install NumPy on VSCode:
    1. Open New Terminal In VSCode:
    2. pip3 install --upgrade pip
    3. pip install numpy

REMEMBER: When running library code cells use Python Interpreter Conda (Version 3.9.12)

Example of using NumPy for arrays:

import numpy as np
new_matrix = np.array([[1, 2, 3],[4, 5, 6],[7, 8, 9]])
 
print (new_matrix)
[[1 2 3]
 [4 5 6]
 [7 8 9]]

Example of using NumPy for derivatives:

import numpy as np
 
# defining polynomial function
var = np.poly1d([2, 0, 1])
print("Polynomial function, f(x):\n", var)
 
# calculating the derivative
derivative = var.deriv()
print("Derivative, f(x)'=", derivative)
 
# calculates the derivative of after
# given value of x
print("When x=5  f(x)'=", derivative(5))
Polynomial function, f(x):
    2
2 x + 1
Derivative, f(x)'=  
4 x
When x=5  f(x)'= 20

Random Values

  • Random number generation (RNG) produces a random number (crazy right?)
    • This means that a procedure with RNG can return different values even if the parameters (inputs) do not change
  • CollegeBoard uses RANDOM(A, B), to return an integer between integers A and B.
    • RANDOM(1, 10) can output 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10
    • In Python, this would be random.randint(A, B), after importing Python's "random" library (import random)
    • JavaScript's works a little differently, with Math.random() returning a value between 0 and 1.
      • To match Python and CollegeBoard, you could make a procedure like this

CollegeBoard Example: What is the possible range of values for answ3

CollegeBoard

Convert the following procedure to Python, then determine the range of outputs if n = 5.


PROCEDURE Dice(n)
    sum ← 0
    REPEAT UNTIL n = 0
        sum ← sum + RANDOM(1, 6)
        n ← n - 1
    RETURN sum

import random # Fill in the blank

def Dice(n):
    sum = 0 
    while n != 0:
        sum = sum + random.randint (1,6)
        n = n - 1
    print(sum)
Dice(5) # Will output a range of 5 to 30
21

Homework

  1. Write a procedure that generates n random numbers, then sorts those numbers into lists of even and odd numbers (JS or Python, Python will be easier).

  2. Using NumPy and only coding in python cell, find the answer to the following questions: a. What is the derivative of 2x^5 - 6x^2 + 24x? b. What is the derivative of (13x^4 + 4x^2) / 2 when x = 9?

  3. Suppose you have a group of 10 dogs and 10 cats, and you want to create a random order for them. Show how random number generation could be used to create this random order.

1) odd and even

import random

print("how many random numbers would you like to generate?")
n = int(input()) #input for how many random #s the user would like generated 

allNum = [] #list of all numbers 
even = []
odd = []

a = 0
while a < n: 
    b = random.randint(0,100)
    allNum.append(b)
    if b % 2 == 1: 
        odd.append(b)
    else:
        even.append(b)
    a = a + 1

print("all numbers generated: ", allNum)
print("even numbers: ", str(even))
print("odd numbers: ", str(odd))
how many random numbers would you like to generate?
all numbers generated:  [24, 36, 40, 30, 19, 13, 20, 61, 89, 90, 5, 68, 28, 50, 0, 24, 90, 47, 1, 43, 77, 13, 68, 6, 87, 41, 27, 71, 57, 77]
even numbers:  [24, 36, 40, 30, 20, 90, 68, 28, 50, 0, 24, 90, 68, 6]
odd numbers:  [19, 13, 61, 89, 5, 47, 1, 43, 77, 13, 87, 41, 27, 71, 57, 77]

2) finding the derivative

import numpy as np 

fn1 = np.poly1d([2, 0, 0, -6, 24, 0]) #function defines polynomial
deriv1 = fn1.deriv() #function finds derivative 
print("derivative of 2x^5 - 6x^2 + 24x:")
print(deriv1) # should be 10x^4 - 12x + 24

#2: derivative of (13x^4 + 4x^2) / 2 when x = 9

fn2 = np.poly1d([13, 0, 4, 0, 0]) * 1/2 #function multiplied by 1/2 to give the denominator of 2
deriv2 = fn2.deriv()
print("")
print("derivative of (13x^4 + 4x^2) / 2 when x=9:")
print(deriv2(9)) #placing the value of x in parenthesis gives the derivative when x equals that number
derivative of 2x^5 - 6x^2 + 24x:
    4
10 x - 12 x + 24

derivative of (13x^4 + 4x^2) / 2 when x=9:
18990.0

3) random dogs and cats assignment

import random 

pets = ["dog1", "dog2", "dog3", "dog4", "dog5", "dog6", "dog7", "dog8", "dog9", "dog10",
        "cat1", "cat2", "cat3", "cat4", "cat5", "cat6", "cat7", "cat8", "cat9", "cat10"]

random.shuffle(pets)

print(str(pets))
['dog2', 'dog3', 'cat8', 'dog9', 'dog10', 'cat6', 'cat7', 'cat4', 'cat5', 'dog8', 'dog5', 'cat1', 'cat3', 'dog7', 'cat9', 'dog4', 'cat2', 'dog1', 'cat10', 'dog6']