Exercises#

After completing the tutorial attempt the following exercises.

If you are not sure how to do something, have a look at the β€œHow To” section.

  1. Using a for loop print the types of the variables in each of the following iterables:

    1. iterable = (1, 2, 3, 4)

    2. iterable = (1, 2.0, 3, 4.0)

    3. iterable = (1, "dog", 0, 3, 4.0)

  2. Consider the following polynomial:

    3n3βˆ’183n2+3318nβˆ’18757
    1. Use the sympy.isprime function to find the lowest positive integer value of n for which the absolute value of that polynomial is not prime?

    2. How many unique primes up until the first non prime value are there? (Hint: the set tool might prove useful here.)

  3. Check the following identify for each value of n∈{0,10,100,2000}:

    βˆ‘i=0ni=n(n+1)2
  4. Check the following identify for all positive integer values of n less than 5000:

    βˆ‘i=0ni2=n(n+1)(2n+1)6
  5. Repeat the experiment of selecting a random integer between 0 and 10 until it is even 1000 times (see Repeat code while a given condition holds). What is the average number of times taken to select an even number?