solved find eigen values of the matrix A=[3 0 0;0 02;0 2 0]

Question : Find eigen values of the matrix A=[3 0 0;0 02;0 2 0] Solution : Given 3 by 3 matrix \[A=\left(\begin{matrix}3&0&0\\0&0&2\\0&2&0\\\end{matrix}\right)\] It’s Eigen values are given by equation \[\left|\begin{matrix}3-\lambda&0&0\\0&-\lambda&2\\0&2&-\lambda\\\end{matrix}\right|=0\]…

which ode does y=sin(log(x)) satisfy?

Question : Which ode does y=sin(log(x)) satisfy? Solution : Given function \[y=sin\left(log\left(x\right)\right)\] differentiating with respect to x \[\frac{dy}{dx}=\cos{\left(\log{\left(x\right)}\right)}\frac{1}{x}\] \[x\ \frac{dy}{dx}=\cos{\left(\log{\left(x\right)}\right)}\] Again differentiating with respect to x \[\frac{dy}{dx}+x\frac{d^2y}{dx^2}=-sin\left(log\left(x\right)\right)\frac{1}{x}=\frac{y}{x}\] \[x^2\frac{d^2y}{dx^2}+x\frac{dy}{dx}+y=0\] is the…