Question : How to plot exp(t) in matlab ? Solution : We shall write the Matlab program to plot exponential function in the interval [-10 10] y=@(t) exp(t) % exponential…
Question : What is the value of Cos(75)? Solution : We shall write \[75^0=45^0+30^0 \] And apply Cos(A+B) formula \[Cos(A+B) =Cos(A)Cos(B)-Sin(A)Sin(B)\] Therefore \[Cos(75^0) = Cos(45^0+30^0) =Cos(45^0)Cos(30^0)-Sin(45^0)Sin(30^0) \] Now we shall…
Question: What is the value of Cos(15)? Solution : We shall write \[15^0=45^0-30^0 \] And apply Cos(A-B) formula \[Cos(A-B) =Cos(A)Cos(B)+Sin(A)Sin(B)\] Therefore \[Cos(15^0) = Cos(45^0-30^0) =Cos(45^0)Cos(30^0)+Sin(45^0)Sin(30^0) \] Now we shall substitute…
Question: What is the value of Sin(75)? Solution : We shall write \[75^0=45^0+30^0 \] And apply Sin(A+B) formula \[Sin(A+B) =Sin(A)Cos(B)+Cos(A)Sin(A)\] Therefore \[Sin(75^0) = Sin(45^0+30^0) =Sin(45^0)Cos(30^0)+Cos(45^0)Sin(30^0) \] Now we shall substitute…
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\]…
Question: Find Orthogonal trajectories to the family of straight lines y=k(x-1) where k in R Solution : Given family of straight lines \[y=k(x-1) \] (1) To obtain Orthogonal trajectories Step…