Starting from:

$29.99

CS335 Assignment 0 Solution

The objective of this lab assignment is to familiarize you with the numpy and matplotlib libraries in python.
1 Problem on Probability
1.1 Theoretical Problems
1.2 Programming
Let X be from the exponential distribution with λ = 1.0. Complete the function modify uniform in the file probability.py to generate samples of this variable using only the numpy.random.uniform function. (1 Mark)
2 Vectorization
In this problem you will implement a function to compute the pair-wise L2 similarity between each pair of points in a set.
Let X ∈ Rn×d where n is the number of points in the the set and d is the number of dimensions of the basis if the points, the L2 similarity between two points x and y is defined as

(a) Obtain a vector expression for d(x,y) when x,y ∈Rd (1 Mark)
1
The above O(n2d) solution doesn’t scale well. However, numpy provides a powerful mechanism called vectorization which can speed up this process drastically.
(d) Run the file similarity.py for multiple values of d and n using the command
$ python3 similarity . py −−dim <d> −−num <n>
How do you expect time taken for the vectorized and looped functions to grow with dimension and number of samples? Plot 4 graphs showing the time vs dimension and time vs number of samples for the two functions and include these in your answers file. Pick 5 values between 0 − 1000 for both n and d for your plot, while keeping the other variable constant. (0.5 Mark)
3 Probability and simulation
You are given a special coin for which probability of getting a head is 0.75 and probability of getting a Tail is 0.25. You are told to keep flipping the coin till you get two consecutive heads. What is the expected number of flips that you have to make?
(b) Write a numpy program in the file simulation.py to simulate this experiment for n = 10,100,1000,10000 runs to get the expected value. Repeat each simulation 10 times and plot a graph with error bars of the observed expected value vs number of runs. (1 Mark) Submission Instructions
Collate all the theoretical solutions into ONE pdf file named answers.pdf. Add the graphs from Problems 2 and 3 as well. Submit this file along with the python files simulation.py, probability.py and similarity.py, zip them in a folder named <roll no> assignment 0.zip. The starter folder is present in the files uploaded with the assignment.
2

More products