Concept:Matrix scalar multiplication and addition are performed element-wise.First multiply each entry of matrix P by the scalar 2, then add the corresponding entries of matrix Q.Explanation:Given P=(5231) and Q=(4325).Compute 2P by multiplying every element of P by 2.2P=(2(5)2(2)2(3)2(1))=(10462)Now add 2P and Q by adding the entries in the same positions.2P+Q=(10462)+(4325)=(10+44+36+22+5)=(14787)The resulting 2×2 matrix has first row 14,8 and second row 7,7.Answer:2P+Q=(14787)This corresponds to the matrix in option B.