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.

  1. Matplotlib is a plotting library for creating static, animated, and interactive visualizations in Python. It provides a high-level interface for drawing attractive and informative statistical graphics. It can be used by programers to create good visuals and is a form of data abstraction.

  2. Pandas is a library for working with data frames in Python. A data frame is a two-dimensional data structure that consists of rows and columns. It is similar to a spreadsheet or a SQL table. This can be used by programers to easily create things such as the keypads from earlier weeks hacks.

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
n = 5
def Dice(n):
    result = random.randint(n, 6 * n)
    print(result)
Dice(5) # Will output a range of 5 to 30
22

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.

import random

def sort_numbers(n):
    # Generate n random numbers
    numbers = [random.randint(1, 100) for _ in range(n)]

    # Sort the numbers into two lists, one for even numbers and one for odd numbers
    even_numbers = [num for num in numbers if num % 2 == 0]
    odd_numbers = [num for num in numbers if num % 2 != 0]

    readable = ""
    for num in even_numbers:
        readable = str(num) + ", " + readable
    print("Even numbers:", readable)
    
    for num in odd_numbers:
        readable = str(num) + ", " + readable
    print("Odd numbers:", readable)

sort_numbers(20)
Even numbers: 90, 96, 88, 44, 78, 42, 34, 44, 24, 50, 
Odd numbers: 77, 11, 33, 61, 35, 65, 13, 99, 57, 29, 90, 96, 88, 44, 78, 42, 34, 44, 24, 50, 
import numpy as np

# Create a poly1d object for the polynomial 2x^5 - 6x^2 + 24x
p = np.poly1d([2, 0, -6, 0, 24, 0])

# Compute the derivative of the polynomial using the deriv method
dp = p.deriv()

# Print the result
print("The derivative of 2x^5 - 6x^2 + 24x is:")
print(dp)

print()
# Second derivative
print()

# Create a poly1d object for the polynomial (13x^4 + 4x^2) / 2
p = np.poly1d([13, 0, 0, 4, 0, 0], True)

# Evaluate the polynomial at x = 9 using the __call__ method
p9 = p(9)

# Compute the derivative of the polynomial using the deriv method
dp = p.deriv()

# Print the result
print(f"The derivative of (13x^4 + 4x^2) / 2 when x = 9 is {dp(9)}")
The derivative of 2x^5 - 6x^2 + 24x is:
    4      2
10 x - 18 x + 24


The derivative of (13x^4 + 4x^2) / 2 when x = 9 is -51759.0