Loading...

Find the Dimensions [[1,2],[5,5],[10,3],[4,6],[7,0]]

Problem

[[1,2],[5,5],[10,3],[4,6],[7,0]]

Solution

  1. Count the rows by identifying the number of horizontal entries or sub-lists within the matrix. There are 5 rows.

  2. Count the columns by identifying the number of vertical entries or elements within each sub-list. There are 2 columns.

  3. State the dimensions using the standard notation m×n where m is the number of rows and n is the number of columns.

Final Answer

Dimensions=5×2


Want more problems? Check here!