Given the $3 \times 3$ matrix
$$A = \begin{pmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \\ \end{pmatrix}$$
where every $a_{ij} \in {\Bbb R}$ is randomly selected from the interval $\left[3-3i-j,3i+j-3\right]$. What is the probability that $|A|\in[-9,9]$?
I have no idea on how to solve this problem in a purely mathematical way without any software. I used Microsoft Excel just to get a rough estimate. In columns A, B, and C, I created random $3 \times 3$ matrices with the specified criterion. In column D, I evaluated the determinant. Then, using Excel functions (COUNT, COUNTIF, SUM,...). I generated $2\cdot 10^5$ such matrices and the required probability turned out to be $\displaystyle \color{red}{\approx}\frac{35}{99}$. How can we evaluate this probability without any software?
Correction after seeing @JimB answer:
I used a slightly different way for the formulae in EXCEL, that is:
(-1)^RANDBETWEEN(0,1)*(RANDBETWEEN(0,0)+RAND()) in A2
(-1)^RANDBETWEEN(0,1)*(RANDBETWEEN(0,1)+RAND()) in B2
(-1)^RANDBETWEEN(0,1)*(RANDBETWEEN(0,2)+RAND()) in C2
and so on until
(-1)^RANDBETWEEN(0,1)*(RANDBETWEEN(0,8)+RAND()) in I2
With J2 being the determinant:
A2*(E2*I2-F2*H2)-B2*(D2*I2-F2*G2)+C2*(D2*H2-E2*G2)
With COUNTIF function for the criterion:
COUNTIFS(J2:J1000001,">-9",J2:J1000001,"<9")
I got $\approx 0.273902$.
I am looking for a purely mathematical way. Is there any?
Your help would be appreciated.
