{"id":19483,"date":"2021-08-30T16:06:13","date_gmt":"2021-08-30T10:36:13","guid":{"rendered":"https:\/\/python-programs.com\/?p=19483"},"modified":"2021-11-22T18:37:08","modified_gmt":"2021-11-22T13:07:08","slug":"python-program-to-find-the-maximum-element-in-the-matrix","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-find-the-maximum-element-in-the-matrix\/","title":{"rendered":"Python Program to Find the Maximum Element in the Matrix"},"content":{"rendered":"

In the previous article, we have discussed Python Program to find the Sum of Series 1^2+2^2+3^2…+N^2<\/a>
\nGiven a matrix, the task is to find the maximum element in the given Matrix in Python<\/p>\n

What is a matrix:<\/strong><\/p>\n

A matrix is a rectangular sequence of numbers divided into columns and rows. A matrix element or entry is a number that appears in a matrix.<\/p>\n

Example:<\/strong><\/p>\n

\"\"<\/p>\n

Above is the matrix which contains 5 rows and 4 columns and having elements from 1 to 20.<\/p>\n

In this order, the dimensions of a matrix indicate the number of rows and columns.<\/p>\n

Here as there are 5 rows and 4 columns it is called a 5*4 matrix.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Matrix\r\n2\u00a0 \u00a09\u00a0 \u00a01\r\n11 4\u00a0 \u00a05 \r\n9\u00a0 \u00a02\u00a0 \u00a03\r\n1\u00a0 \u00a02\u00a0 \u00a03<\/pre>\n

Output:<\/strong><\/p>\n

The maximum element of the given matrix [[2, 9, 1], [11, 4, 5], [9, 2, 3], [1, 2, 3]] is :\r\n11<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Matrix \r\n1   7   5\r\n25 4   6<\/pre>\n

Output:<\/strong><\/p>\n

The maximum element of the given matrix [[1, 7, 5], [25, 4, 6]] is :\r\n25<\/pre>\n

Program to Find the Maximum Element in the Matrix in Python<\/h2>\n

Below are the ways to find the maximum element in the given Matrix in Python<\/p>\n