Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Homework 2 - Math 480b - Spring 2016
Due Friday, April 15, 2016 by 6pm
Your grading will be automatically collected.
HOMEWORK TOTAL: 60 POINTS
GRADING GUIDELINES
- Go through your gradee's homework worksheet and assign a score to each question. Please state an individual questions assigned score in a cell below it, and leave a few words comment.
- State the total score you've assigned for the homework at the top of the worksheet. Put
TOTAL: X/60
in a cell on its own, where X is the total score for this homework. - The idea is to provide constructive feedback for your gradee. Please attempt to be fair in your grading, and make sure your comments are professional.
- For visibility, I recommend any text you add be colored red. You're welcome to copy any of red html text below and paste it in, suitably edited, if you so desire.
Problem 1: Truthiness
An expression e is truthy if bool(e)
is True; otherwise e is falsy.
Different programming languages may have different truthy and falsy values (I'm looking at you javascript).
1a. Give 10 different Python objects that are falsy. Your list might include e.g., []
and 0
. Also, by "different" we mean that a is b
evaluates to False.
1b. In Python "is" means "identical objects", whereas "==" can be much more subtle. Give 5 examples of Python objects a
and b
such that a==b
is true but a is b
is not true.
Solution: 10 points total
0.5 points for each example in part a and in part b.
Part a:
Examples of legal Python Objects which are falsy:
If it's not on the above list, check with the `bool` function.
Also check to make sure that for each example a, there is not another example b such that a is b returns True.
Part b:
Test each of their examples against each other.
Problem 2: Control Flow
Write a function named fizz_buzz that accepts an integer N and for each integer m from 1 to N, prints 'Fizz' if m is divisible by 2, prints 'Buzz' if m is divisible by 3, prints 'FizzBuzz' if m is divisible by 2 and 3, and prints 'Moot' if none of the above.
eg. Calling fizz_buzz(7)
Prints
10 Points Total
Test the function on a variety of integer inputs; the output should match the function fizz_buzz given here. Their function need not be coded the same way this one is. Only output needs to match.
This question has 4 parts to correctness.
- + 3 points if "FizzBuzz" is printed for all even numbers divisible by 3
- + 3 points if "Fizz" is printed for all even numbers not divisible by 3
- + 3 points if "Buzz" is printed for all the odd numbers divisible by 3
- + 1 point if "Moot" is printed for all the odd numbers not divisible by 3
For example, if their function prints "Fizz" for all outputs, they would get 3 points since at least the 2nd bullet is satisfied
Problem 3: Set comprehensions
Convert the following sets written in English into sets (not lists!) in Python using set comprehensions.
3a.
3b. The set of primes less than 100 that are congruent to 1 modulo 4
3c. The set of positive integers such that
3d. The set of prime number years during this century (i.e., between 2000 and 2100).
10 Points Total
The output set for each part should be equal to each set in these solutions. Comprehensions do not need to be identical.
Part A (1 point)
Award:
- 1 point if they used a comprehension and had the right set
- 0.5 points if they used a comprehension but their set is missing an element or 2 due to slightly incorrect bounds
- 0 points for anything else
Part B, C, D (3 points each)
Award:
- 3 points if they used a comprehension and had the right set
- 2 points if they used a comprehension but their set is missing an element or 2 due to slightly incorrect bounds
- 1 point if they used a comprehension resulting in the wrong set or they didn't use a comprehension but had the right set.
- 0 points for anything else
Problem 4: Better and Worse
4a. Implement a "good" function that returns the Nth Fibonacci number.
4b. What makes your choice better than others? (Hint: read about how recursion in Python sucks.)
10 Points Total (5 per part)
Sage has its own fibonacci function. Check for various integer inputs that their fibonacci function returns the same number. ie. fibonacci(n) == fib(n)
fibonacci(n) == fib(n+1) is okay due to starting at 0 vs starting at 1.
Part A:
Award:
- 5 points if their function correctly returns the fibonacci numbers and is better than a naive recursive solution
- 3 points if their function is not a naive recursive solution
- 1 point if they have a function but it does not correctly return the nth fibonacci number
Part B:
Award:
- 5 points if they say what makes their function "good" and why that is.
- 3 points if they say what makes their function "good" and compare it to a bad thing.
- 1 points if they only say what makes their function "good"
- 0 points if they only say "recursion sucks" or leave it empty
Example Solutions 4b:
(0 points)
I didn't use recursion, which is awful in Python.
(2 points)
I used a for loop.
(3 points)
My function does not use recursion, which is bad. Instead I use a for loop.
(5 points)
Python keeps track of a whole bunch of things for each function call so if I used a recursive strategy, the function could easily stack overflow (link to source).
Instead, I used the close form of the recurrence relation which is fast to compute.
Problem 5: Fibonacci numbers
5a. Using your function above, generate a list of the first 100 Fibonacci numbers.
5b. Write code that computes how many of these Fibonacci numbers are prime.
5c. Do you think there are infinitely many prime Fibonacci numbers? (Back up your claim with data and/or internet searches.)
10 Points Total
If their function from problem 4 is broken, use Sage's `fibonacci` function in place of theirs.
Their list of Fibonacci numbers may start at 0 or at 1.
Part A: (3 Points)
Award:
- 3 points if they correctly generated the first 100 Fibonacci numbers with their function
- 2 points if their list is missing the 100th Fibonacci number and correct otherwise.
- 1 points if they only generate the 100th Fibonacci number.
Part B: (4 Points)
Award:
- 4 points if they have the correct number of primes.
- 2 points if their code is just slightly broken
Part C: (3 Points)
Award:
- 3 points if their argument is substantiated by some intuition, reasoning, and a link to at least one article
- 2 points if they are missing one of the above
- 1 points if they are missing 2 of the above
Solution 5c:
Problem 6: Python Dictionaries
6a. Search online and find as many names as you can for data structures that are like a Python "dictionary", but in other programming languages. For example, in Javascript the analogue of a Python dictionary is called a "Map".
6b. Give five different types of Python objects that can't be the keys of a Python dictionary, and five that can be keys. Your answer should consist of objects
obj
so thattype(obj)
are different.
10 Points Total
Part A: (5 Points)
Award:
- 5 points if they gave at least 3 other names for a "dictionary" and at least 5 other languages.
- 3 points if their list gives at least 3 other langauges and only 2 other names.
- 1 points if only gave language names but not the names for a "dictionary"
- 0 points otherwise
Part B: (5 Points total, 0.5 points per example)
Objects that can't be keys must be mutable and objects that can be keys must be immutable.
Example Solutions 6b: (Neither list is comprehensive)
Illegal
Lists
Sets
Dictionaries
Tuples with mutable components
bytearray()
Legal
Strings
Numbers (int, float, etc)
Tubles with immutable components
Pointers to defined functions