The matrix A=[aij]3×3 is defined by:
aij=⎩⎨⎧2i+3j,5,3i−2j,i<ji=ji>j
Computing each element of the matrix:
For i=1:
a11=5 (since i=j)
a12=2(1)+3(2)=8 (since i<j)
a13=2(1)+3(3)=11 (since i<j)
For i=2:
a21=3(2)−2(1)=4 (since i>j)
a22=5 (since i=j)
a23=2(2)+3(3)=13 (since i<j)
For i=3:
a31=3(3)−2(1)=7 (since i>j)
a32=3(3)−2(2)=5 (since i>j)
a33=5 (since i=j)
The matrix is:
A=54785511135
Elements greater than 7: 8,11,13
Therefore, the number of elements greater than 7 is 3.