Sale!

CSC148 Lab #05

$35.00 $21.00

Category: You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (5 votes)

In this lab you will learn, and reason about, some python idioms, as well as develop some unit testing
skills. You may also need to do some reading and review of some Python tools.
List comprehensions, zip, and filter capture logical patterns that are often used by programmers, and
provide an occasionally-more-readable and internally-optimized form for them, see Python tips on loops,
and Goodger on comprehensions, filter documentation, and Python zip documentation. These forms
make a programmer’s intention clear—that they are intending to produce a new list or iterable from an
old one. In this lab, you will re-implement some functions written using comprehensions and filter to use
loops instead, and verify that you have consistent implementations using unit tests.
Vector and matrix operations
Vectors can be represented as python lists of numbers. You may have encountered them, but in any case
they support some operations peculiar to themselves.
dot product
One such operation is the dot-product—a way of multiplying two vectors to get a single number (rather
than a list of numbers). Here’s an example, where the symbol represents the dot-product operation:
[1, 2, 3].[4, 5, 6] = (1×4) + (2×5) + (3×6) = 4 + 10 + 18 = 32
Basically, we multiply the corresponding elements of the two vectors together, and then sum those
products.
Your first task is to read the definition of dot_prod() in comprehension.py. You may also look over
Python tips on loops, tuple unpacking, and zip to see how this solution works.
Now, re-implement this function (write your own implementation) in a new file called loop.py
without using a list comprehension or zip. Use exactly the same function name, docstring, and parameters,
just change the body. Your basic approach will be:
1. create an empty list (if you’re producing a list), or a variable initially set to 0
2. loop over the iterables (lists in this case) provided
3. inside the list, update your list or variable
4. when you’re done, return your list or variable
Also, in a new file called tester.py, create new test cases in the TestCase DotProductTester.
Increase your confidence that your implementation of dot_prod(), as well as the one in
comprehension.py, pass appropriate tests. To get an idea of what tests you should consider, review
Choosing test cases. You should strive to test one case at a time with small test… methods, rather than
lumping all your tests together. You may also review how to set up unit tests.
If you’re stuck, talk to your TA. If you’re not stuck, show your TA your work.
matrix-vector product
Another operation multiplies a matrix M—essentially a list of vectors—times a vector v, resulting in a new
vector. The idea is to take the dot-product of each vector in the matrix with the vector you are multiplying
it with to yield the corresponding entry in the new vector. An example should make this more concrete
(here we indicate the matrix-vector product by to distinguish it from the dot-product)
[[1, 2], [3, 4]] × [5,6] = [[1, 2] . [5, 6], [3, 4] . [5, 6]] = [17, 39]
Notice that we recycle the dot_product in order to implement the matrix_vector product.
Again, your first task is to read the definition of matrix_vector_prod() in comprehension.py.
Then re-implement matrix_vector_prod() in the file loop.py, using a loop or loops, rather than a
comprehension. You should certainly use dot_prod() in your implementation. Once you are done,
create some new test cases in the TestCase MatrixVectorProductTester in the file tester.py.
Increase your confidence that both implementations pass appropriate tests.
If you’re stuck, talk to your TA. If you’re not stuck, show your TA your work.
Pythagorean triples
List comprehensions aren’t just limited to iterating over a single iterable. Try running following example:
[(i, j, k) for i in range(3) for j in range(3) for k in range(3)]
Pythagorean triples are triples of integers (x, y, z) where x
2 + y
2 = z
2 (representing the sides of special rightangle triangles). These can be discovered analytically (paper and pencil), but why not let a computer do
the work?
Read over the implementation of pythagorean_triples() in comprehension.py. You may first
want to read documentation for filter. Once you’re done, re-implement pythagorean_triples() in
the file loop.py, using (of course!) neither comprehensions nor the built-in filter function. Add test
methods to the TestCase PythagoreanTripleTester, to increase your confidence that both
implementations pass appropriate tests.
If you get stuck, call over your TA. If you don’t get stuck, show your completed work to your TA.