Working with an np.ndarray#

These exercises and drills aim to build your experience of using an np.ndarry as opposed to a standard python list. Try to work through them all without looking at the answers first.

Tip: If I am stuck with how to implement a model or algorithm efficiently in `numpy` it often helps to implement it first in standard python. I can then at least check my `numpy` code is reproducing the standard python results and it is more efficient.

In practice you will come across complex problems that will make you scratch you head! If you are struggling with arrays then small steps will help!


Remember for any code where you wish to use numpy you need to import it:

import numpy as np

Exercise 1#

Task:

  • Create two numpy arrays of size 10;

  • The first array should be called array_1 have all zero integer values;

  • The second array array_2 should be a sequence of integers from 90 to 99;

  • Print the arrays.

The expected output of your code is:

[0 0 0 0 0 0 0 0 0 0]

[90 91 92 93 94 95 96 97 98 99]

# your code here ...

Exercise 2#

Task:

  • Continue to use array_1 and array_2 from exercise 1.

  • Create a slice of array_1 to access the last 5 elements of the array;

  • Add the value 10 to each of the elements in the slice.

  • Now multiply the two arrays together and print out the result;

The expected result is:

[0, 0, 0, 0, 0, 950, 960, 970, 980, 990]
# your code here ...
[  0   0   0   0   0 950 960 970 980 990]

Exercise 3#

You are given the following system of equations

\[x + y + z = 6\]
\[2y + 5z = −4\]
\[2x + 5y − z = 27\]

The matrix form of these equations is:

\[\begin{split} \begin{bmatrix} 1 & 1 & 1\\ 0 & 2 & 5 \\ 2 & 5 & -1 \end{bmatrix} \begin{bmatrix} x \\ y \\ z \end{bmatrix}= \begin{bmatrix} 6\\ -4\\ 27 \end{bmatrix}\end{split}\]

Task:

  • If we denote the two matricies containing numeric data as

\[\begin{split}A = \begin{bmatrix} 1 & 1 & 1\\ 0 & 2 & 5 \\ 2 & 5 & -1 \end{bmatrix}\end{split}\]
\[\begin{split}B = \begin{bmatrix} 6\\ -4\\ 27 \end{bmatrix}\end{split}\]
  • Represent \(A\) and \(B\) as seperate arrays.

  • Print the arrays to the screen.

  • Print the shape of the arrays.

# your code here...

Exercise 4#

To solve for the unknowns \(x\), \(y\) and \(z\) we need to take the dot product of the inverse of \(A\) and \(B\)

\[\begin{split}\begin{bmatrix} x \\ y \\ z \end{bmatrix} = \begin{bmatrix} 1 & 1 & 1\\ 0 & 2 & 5 \\ 2 & 5 & -1 \end{bmatrix}^{-1} \begin{bmatrix} 6\\ -4\\ 27 \end{bmatrix}\end{split}\]

There are number of ways we can solve this in numpy. One option is to use the np.dot function to take the dot product. This can be combined with np.linalg.inv to take the inverse of a matrix. Or more generally we can call np.linalg.solve() to solve a system of linear equations.

Task

  • Using the matricies constructed in exercise 3 and the functions described above, solve for \(x\), \(y\) and \(z\)

# your code here

Exercise 5#

The code below generates a 1D array vector with shape (15,). It is a sequence of numbers from 0 to 14.

Task:

  • Reshape the 1d array into a 2d array with shape (5, 3)

The expected result is

[[ 0  1  2]
 [ 3  4  5]
 [ 6  7  8]
 [ 9 10 11]
 [12 13 14]]
vector = np.arange(15)
vector.shape

# your code here ...
(15,)

Exercise 6#

  • Use the 2 dimensional matrix that is the answer to exercise 5;

  • Slice the array to return elements 1 to 3 of the first column.

The expected output is:

[3 6 9]
# your code here ...

Exercise 7#

The code below generates a 1D array vector with shape (100,). It is a sequence of numbers from 0 to 99.

Task:

  • Reshape the 1d array into a 3d array with shape (2, 10, 5)

When printed to the screen the expected array should take the form

[[[ 0  1  2  3  4]
  [ 5  6  7  8  9]
  [10 11 12 13 14]
  [15 16 17 18 19]
  [20 21 22 23 24]
  [25 26 27 28 29]
  [30 31 32 33 34]
  [35 36 37 38 39]
  [40 41 42 43 44]
  [45 46 47 48 49]]

 [[50 51 52 53 54]
  [55 56 57 58 59]
  [60 61 62 63 64]
  [65 66 67 68 69]
  [70 71 72 73 74]
  [75 76 77 78 79]
  [80 81 82 83 84]
  [85 86 87 88 89]
  [90 91 92 93 94]
  [95 96 97 98 99]]]
vector = np.arange(100)
print(vector.shape)

# your code here ...
(100,)

Exercise 8#

You can think of the 3 dimensional array constructed in the last exercise as an array of two \(10 \times 2\) sub-matricies (indexed 0 to 1). Each matrix is comprised of 10 sub vectors (indexed 0 to 9).

Using the 3 dimensional array constructed in exercise 7 take the following slices and if necessary make the updates to the original data:

  • The second (i.e. index = 1) sub vector of each matrix. The expected answer is:

[[ 5  6  7  8  9]
 [55 56 57 58 59]]
  • Elements 1 to 3 of the fifth subvector in each matrix. The expected answer is:

[[21 22 23]
 [71 72 73]]
  • Can you produce following array from the original?

[[   2    7   12 9999   22   27   32   37   42   47]
 [   3    8   13 9999   23   28   33   38   43   48]
 [   4    9   14 9999   24   29   34   39   44   49]]

Hints for final task:

  • You are replacing the values 17, 18 and 19.

  • From the first row of the array select the third sub vector.

  • In this subvector set the final 3 columns to 9999

  • Transpose the array.

  • To transpose an array you can call .T from an array. E.g.

>>> matrix = np.arange(10).reshape(-1, 5)
>>> print(matrix)

[[0 1 2 3 4]
 [5 6 7 8 9]]

>>> print(matrix.T)

[[0 5]
 [1 6]
 [2 7]
 [3 8]
 [4 9]]
# your code here ...