assume matrix A,B,C 2X2 square matrix and i have this LMI
AP+A'P BP;B^TP C]<0 ,P>0]
now if i want to add epsilon*eye(2,2) to avoid getting eig(P) near to zero like 2e-9
then why the epsilon*eye(2,2) should be added to the term AP+A'P only
and other term Not except
i.e only possible solution
[AP+A'P BP;B^TP c]+[epsilon*eye(2,2) 0;0 0]<0]
WHY?