This section includes 7 InterviewSolutions, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
2x3 + 3x2 - 8x + 3 = 0 is double the other roots find the roots of the equation. |
|
Answer» \(2x^3 + 3x^2 - 8x + 3 = 0\) x = 1 satisfies the equation (1) as 2 + 3 - 8 + 3 = 0 \(\therefore (x - 1) (2x^2 + 5x -3) = 0\) ⇒ \((x - 1) (2x - 1) (x + 3) = 0\) ⇒ \(x = 1, \frac12,-3\) |
|
| 2. |
Find the relation between the root and coefficient of x3 - 6x2 + 11x - 6. |
|
Answer» \(x^3 - 6x^2 + 11x -6 = 0\) Let roots are \(\alpha, \beta\) and \(\gamma\). Then sum of roots = \(\alpha + \beta + \gamma = \frac{-b}a = \frac{-(-6)}1 = 6\) Sum of products of two roots = \(\alpha\beta + \beta\gamma + \alpha\gamma = \frac ca = \frac{11}1 = 11\) Product of roots = \(\alpha \beta\gamma = \frac{-d}a = \frac{-(-6)}1 = 6\). |
|
| 3. |
Which of the following expression is a polynomial in one variable? a) x+(2/x)+3.b) 3 root x+ (2/root x)+5. c) root 2 x^2 - root 3 x +6. d) x^10 + y^5 +8 |
|
Answer» Correct option is (C) \(2x^2 - \sqrt 3 x + 6 \) (A) \(x + \frac 2x + 3 = \frac{x^2 + 2 + 3x}x\) (Not a polynomial) (B) \(3\sqrt x + \frac 2{\sqrt x} + 5 = \frac{3x + 2 + 5\sqrt x}{\sqrt x}\) (Not a polynomial) (C) \(2x^2 - \sqrt 3 x + 6 \) is a polynomial in one variable (x). (D) \(x^{10} + y^5 + 8\) is a polynomial in two variables x & y. |
|
| 4. |
P(x) = x2 + 2x + 1 find the sum of products of the zeroes and verify relationship to the coefficients of terms in the polynomial. |
|
Answer» \(P(x) = x^2 + 2x + 1\) \(P(x) = 0\) gives \(x^2 + 2x + 1 = 0\) ⇒ \((x + 1)^2 = 0\) ⇒ \(x + 1 = 0 \,or\, x + 1 = 0\) \(x = -1 \,or\,x = -1\). Sum of zeros = \(-1 - 1 = -2 = \frac{-2}1 = \frac{-b}a = \frac{\text{-coefficient of }x}{\text{coefficient of }x^2}\) Product of zeros = \((-1)(-1) = 1 = \frac11 = \frac ca = \frac{\text{constant term}}{\text{coefficient of }x^2}\) |
|
| 5. |
Which one of the following is a breed of cattle famous for high milk yield as well as draught capacity? (a) Mewati (b) Tharparkar (c) Kankrej (d) Red Sindhi |
|
Answer» (b) Tharparkar |
|
| 6. |
Give the name of the process involved in DNA fragmentation. |
| Answer» The name of the process involved in DNA fragmentation is Restriction digestion. | |
| 7. |
If `(3sqrt(3)+5)^n=p+f.` where p is an integer and f is a proper fraction. then find the value of `(3sqrt3-5)^n,nin,N,` isA. `1-f`, if n is evenB. `1-f`, if n is oddC. f, if n is oddD. f, if n is even |
| Answer» Correct Answer - A | |
| 8. |
Why is Y chromosome genetically less active? |
| Answer» Since Y chromosome possesses small amount of euchromatin that contains DNA or genes, therefore it is genetically less active. | |
| 9. |
What are holandric genes? Give one example of the same. |
| Answer» Genes present on non homologous region of Y chromosome are called holandric genes. E.G. Hypertrichosis or hairy ear pinna. | |
| 10. |
What is the genetic difference between total colour blindness and red-green colour blindness? |
| Answer» Total colour blindness is due to incomplete sex linked genes while red-green colour blindness is due to complete sex linkage. | |
| 11. |
What are variations? |
| Answer» The differences existing between the parents and their offspring are called variations. | |
| 12. |
What is PNDT Act of 1996? |
| Answer» PNDT Act is the Prenatal Diagnostic Techniques (Regulation and Prevention of Misuse) Act. According to this act, prenatal sex determination of foetus is banned. | |
| 13. |
What does sex ratio indicate? |
| Answer» Sex ratio indicates gender equality and status of women in the country. | |
| 14. |
What is meant by euploidy? |
| Answer» The presence of whole sets of chromosomes is called euploidy. | |
| 15. |
What is the difference between centromere and telomere? |
| Answer» Centromere is the point where two chromatids are held together whereas telomere is the tip of a chromosome. | |
| 16. |
Consider the following statements:-int x = 6, y=8, z, w;y = x++;z = ++x;The value of x,y,z by calculating the above expressions are:-(A) y=8, z=8, x=6(B) y=6, x=8, z=8(C) y=9, z=7, x=8(D) y=7, x=8, z=7 |
|
Answer» Correct option - (B) y=6, x=8, z=8 Explanation:- y is assigned value of x that is 6, then x in incremented that is value of x=7, z is assigned value of x after incrementing that is z =8 so value of x =8. |
|
| 17. |
Write C function named ‘fiddle’ that takes two arguments, x and y and changes both values. x is an int while y is a pointer to int |
|
Answer» C function named ‘fiddle’ that takes two arguments, x and y and changes both values. x is an int while y is a pointer to int #include<conio.h> void main() { int x,z,*y,temp; clrscr(); printf("\n Enter two numbers : \n"); scanf("%d %d",&x,&z); y=&z; printf("\n\n x = %d and y = %d",x,*y); fiddle(&x,y); printf("\n After changing their values "); printf("\n x = %d and y = %d",x,*y); getch(); } fiddle(int *a,int *b) { int temp; temp=*a; *a=*b; *b=temp; getch(); } |
|
| 18. |
Integrate 1/(x-1)^2√(1-x)^2. |
|
Answer» \(\int\frac 1{(x -1 )^2 \sqrt{(1 - x)^2}}\,dx\) \(= \int \frac{1}{(1 -x) (x - 1)^2}dx\) \(= -\int \frac1{(x - 1)^3} \,dx\) \(= -\int(x - 1)^{-3} \, dx\) \(= - 1 \times\frac{(x - 1)^{-3 + 1}}{-3 + 1} + C\) \(= \frac 12 (x -1)^{-2} + C\) \(= \frac 1{2(x -1)^2} + C\) |
|
| 19. |
What is the value of √-a ×√-b in complex no |
|
Answer» √-a×√-b =√-1×√a×√-1×√b = i × √a × i × √b (because √-1=i) = i² × √ab =-1√ab. (because i² = -1) =-√ab Answer is √-ab |
|
| 20. |
If \( \tan A=\frac{1}{2} \), and \( \tan B=\frac{1}{3} \), find the value of \( (A+B) \) |
|
Answer» tanA=1/2 , tanB=1/3 Now using the following formula tan(A+B)= (tanA+tanB)/(1-tanA.tanB) tan(A+B)=(1/2+1/3)/{1-(1/2)(1/3)} tan(A+B)={(3+2)/6}/{1-1/6} tan(A+B)= (5/6)/(5/6) tan(A+B)=1 (A+B)=arctan(1) A+B=45° |
|
| 21. |
` 2x^(2) - 13x+20 = 0, 2y^(2) - 7y + 6 = 0`A. if ` x gt y`B. if ` x lt y`C. if ` x ge y`D. if ` x le y` |
|
Answer» Correct Answer - A ` 2x^(2) - 13x+20= 0` ` 2x^(2) - 8x-5x+ 20 = 0` ` x = 2.5, 4` ` 2y^(2) - 7y+6 = 0` ` 2y^(2) - 3y - 4y + 6 = 0` ` y = 1.5, 2` |
|
| 22. |
I. ` 4x^(2) - 13x - 12 = 0` II. ` y^(2) - 7y - 60 = 0`A. if` x gt y`B. if ` x lt y`C. if ` x le y`D. if x = y or cannot be established |
|
Answer» Correct Answer - D ` (x - 4) (4x + 3) = 0` ` x = 4, -3//4` ` (x+5)(x-12) = 0` ` y = 12, -5` |
|
| 23. |
` 2x^(2) - 13x + 20 = 0, 2y^(2) - 7y + 6 = 0`A. ` x gt y`B. ` x lt y`C. ` x ge y`D. ` x le y` |
|
Answer» Correct Answer - A ` 2x^(2)-13x+20 = 0` ` 2x^(2) -8x-5x+20 = 0` ` x = 2.5, 4` ` 2y^(2) -7y+6 = 0` ` 2y^(2) -3y - 4y + 6 =0` ` y = 1.5, 2` Put on number line `1.5,1,2.5,4` |
|
| 24. |
` 2x^(2) - 13x+20 = 0, 2y^(2) - 7y + 6 = 0`A. if ` x gt y`B. if ` x lt y`C. if ` x ge y` D. if ` x le y` |
|
Answer» Correct Answer - A ` 2x^(2) - 13x+20= 0` ` 2x^(2) - 8x-5x+ 20 = 0` ` x = 2.5, 4` ` 2y^(2) - 7y+6 = 0` ` 2y^(2) - 3y - 4y + 6 = 0` ` y = 1.5, 2` |
|
| 25. |
How much interest will an investment of GHC5000 yield after five years at a simple interest rate of 8.5 percent per annum |
|
Answer» Interest = \(\frac {PRT}{100} = \frac {5000 \times 8.5 \times 5} {100}\) \(= 5 \times 85 \times 5 \) \(= 2125\) |
|
| 26. |
The polynomial f(x) = 3x2 – 7x + 2 then the value of f(-1) is – (A) -8 (B) 12 (C) -12 (D) 0 |
|
Answer» Correct answer is (B) 12 |
|
| 27. |
The zeros of the polynomial x2 – 3 are –(A) 3, -3(B) √3, -√3(C) √3, √3(D) 3, 3 |
|
Answer» Correct answer is (B) √3, -√3 |
|
| 28. |
The value of the angle 80° in radian is(A) 4π(B) \(\frac{1}{9}\)π(C) \(\frac{2}{9}\)π(D) \(\frac{4}{9}\)π |
|
Answer» Correct option is: (D) \(\frac{4}{9}\)π |
|
| 29. |
Which of the following is the solution of 6x – 2y = 0 and 10x + 2y = 32 ? (A) x = 6, y = 6 (B) x = 2, y = 6 (C) x= 6, y = 2 (D) x = 2, y = 2 |
|
Answer» Correct answer is (B) x = 2, y = 6 |
|
| 30. |
300 grade is equal to how many right angles ? (A) 3 (B) 4 (C) 2 (D) 5 |
|
Answer» Correct option is: (A) 3 |
|
| 31. |
If the lines 4x + py = 6 and 12x + 9y = 15 are parallel then the value of p will be – (A) 1/3(B) 3 (C) 6 (D) -3 |
|
Answer» Correct answer is (B) 3 |
|
| 32. |
Point (-5, -4) lies in (A) first quadrant (B) second quadrant (C) third quadrant (D) fourth quadrant |
|
Answer» Correct option is: (C) third quadrant |
|
| 33. |
The height of Mt Vesuvius is about 1200 m and that of Mt Blanc is 4800 m. Mt Blanc is the ______ of the two mountains. Its height is about ______ of Mt Vesuvius A) higher / one fourth that B) highest / one fourth C) highest / four times that D) higher / four times that |
|
Answer» Correct option is D) higher / four times that |
|
| 34. |
Find the simple interest on 540000/= invested for 18 months at rate of 10% pa |
|
Answer» P = Rs. 540000 R = 10% T = 18 months = \(1 \frac{1}{2}\) = \(\frac{3}{2}\) years S.I = \(\frac{P \times R \times T}{100}\) = \(\frac{540000 \times 10 \times 3}{100 \times 2}\) = Rs.5400 x 5 x 3 = Rs.81000 |
|
| 35. |
If n(A × B) = 20 and n(A) = 5, then n(B)______ |
|
Answer» n(axb) = 20 20 = 5xn(B) n(B) = 20/5 n(B) = 4 n(A) = 5, n(A x B) = 20 ⇒ n(A) n(B) = 20 (\(\because\) n(A x B) = n(A). n(B)) ⇒ n(B) = \(\frac{20}{n(A)}=\frac{20}5=4\) |
|
| 36. |
Find the rate on the principal of 240000/= invested for period of 3.5 years if the interest is 15000. |
|
Answer» P = Rs. 240000 T = 3.5 years S.I = Rs. 15000 R = ? \(R = \frac{S.I \times 100}{P \times T}\) = \(\frac{15000 \times 100}{240000 \times 3.5}\) = \(\frac{150}{84}\) = 1.8 % aprox. |
|
| 37. |
What is the challenge in manufacturing products ? |
|
Answer» 1. Forecasting Demand for Products 2. Controlling Inventory Inventory tracking is a time-consuming process that can be streamlined with the help of software. Checking stock manually is very inefficient and prone to errors that can lead to inaccuracies, shortages and overstock, as well as unidentified damages. 3. Improving Efficiency at Manufacturing Plants 4. Increasing ROI 5. Skilled Labor Shortage 6. Managing Sales Leads Manufacturers also often find it difficult to identify potential leads so they often focus on unpromising opportunities and forget to follow up with high potential leads. |
|
| 38. |
Name any two types of Cyber Crimes and give one point for each to protected. |
|
Answer» Types of cybercrime
|
|
| 39. |
The general transformation cycle for information is:(A) information to data to knowledge.(B) knowledge to data to information.(C) data to knowledge to information(D) data to information to knowledge |
|
Answer» The correct option is (D) data to information to knowledge • The main transformation cycle for information is “data, information, knowledge”. • This is often stated as the DIKAR model i.e. Data, Information, Knowledge, Action, and the Result. This model gives a solid hint as to the layers elaborate in aligning technology and structural strategies, and it is an essential moment in changing defiance to information management. |
|
| 40. |
The statement “the sum of two odd numbers is odd” is A) always true B) always false C) ambiguous D) none |
|
Answer» B) always false |
|
| 41. |
If the quadratic equation \( a x^{2}+b x+c=0 \) has \( -2 \) as one of its roots then \( a x+b y+c=0 \) represents.(A) A family of concurrent lines(B) A family of parallel lines (C) A single line (D) A line perpendicular to \( x \)-axis |
|
Answer» The correct option is (A) A family of concurrent lines. Given ax2 + bx + c = 0 One root is −2 −2 + α = −b/a −−−(1) −2α = c/a −−−(2) On solving eq (1) and (2) c = 2(a + b) Given eq x + by + c = 0 x + by + 2a + 2b = 0 Hence above equation represents family of lines. |
|
| 42. |
What is computer? |
|
Answer» Computer is an electronic device.which is used by human to reduce time.it is used to calculate millions of calculations in a second. |
|
| 43. |
For a reaction `r=K(A)^(3//2)` then unit of rate of reaction and rate constant respectively :-A. `molL^(-1)s^(-1),mol^(-1//2)L^(1//2)s^(-1)`B. `mol^(-1)L^(-1)s^(-1),mol^(-1//2)L^(1//2)s^(-1)`C. `molL^(-1)s^(-1),mol^(+1//2)L^(1//2)s^(-1)`D. `mol,mol^(+1//2)L^(1//2)s` |
|
Answer» Correct Answer - A unit of K `mol^(1-n)L^(n-1)sec^(-1)` |
|
| 44. |
In a first order system of pulleys there are three movable pulleys. What is the effort required to raise a load of 6000 N ? Assume efficiency of the system to be 80%. If the same load is to be raised using 520 N, find the number of movable pulleys that are necessary. Assume a reduction of efficiency of 5% for each additional pulley used in the system. |
|
Answer» VR = 2n , where n is the number of movable pulleys. VR = 23 = 8 Now, MA = η × VR = 0.8 × 8 = 6.4 \(\frac WP\) = 6.4 P = \(\frac W{6.4}\) = \(\frac {6000}{6.4}\) P = 937.5 N In the second case, Effort = 520 N Efficiency η = 0.80 – n1 × 0.05 where n1 = number of additional pulleys required and equal to (n – 3). MA = η × VR \(\frac WP\) = η × VR W = P × η × 2n = P(0.8 – n1 × 0.05) × 2n = P[0.8 – (n – 3) × 0.05] 2n By going for a trial and error solution, starting with one additional pulley i.e., totally with four pulleys, W = 520 [0.8 – (4 – 3) × 0.05] 24 = 6240 N i.e., if four pulleys are used, a load of 6240 N can be raised with the help of 520 N effort. ∴ Number of movable pulleys required = 4 |
|
| 45. |
The rate of first-order reaction is `1.5 xx 10^(-2) M "min"^(-1)` at `0.5 M` concentration of reactant. The half-life of reaction isA. 7.53 minB. 0.383 minC. 23.1 minD. 8.73 min |
|
Answer» Correct Answer - C `r=K(A)^(1)` `t_(2)(0.693)/(K)` |
|
| 46. |
Soap help in forming __________ of oil and water by acting as a bridge between the two. |
| Answer» The answer is molecule. | |
| 47. |
Q.1 Solve the following differential equations: (a) ( D^{2}+2 p D+(p^{2}+q^{2}) y=0 (b) ((D^{2}+1) y=cos x sin 3 x (c) (D^{3}+D^{2}+D) y=e^{2 x}+x^{2}+xQ.2 Solve the following differential equations:(a) (x^{2} D^{2}-4 x D+6) y=x^{4} (b) (x^{2} D^{2}+x D+1) y=log x+cos (log x) (c) (x+1)^{2} ({d^{2} y}/{d x^{2}})-3(x+1) ({d y}/{d x}+4 y=x |
|
Answer» 5. (a) D2 + 2pD + (p2 + q2)y = 0 It's auxiliary equation is m2 + 2pm + p2 + q2 = 0 ⇒ (m + p)2 + q2 = 0 ⇒ m + p = \(\pm q\)i ⇒ m = -p \(\pm q\)i \(\therefore\) C.F. = e-px (C1 cos9x + C2sin qx) Hence, y = e-px (C1cos 9x + C2 sin 9x) is solution of given differential equation. (b) m2 + 1 = 0 ⇒ m = \(\pm i\) C.F. = C1 cos x + C2 sin x y1 = cos x, y2 = sin x w(y1, y2) = \(\begin{vmatrix}cosx&sin x\\-sin x&cos x\end{vmatrix}\) = cos2x + sin2x = 1 u1 = \(\int\frac{\begin{vmatrix}0&sin x\\cosxsin3x&cosx\end{vmatrix}}{W(y_1,y_2)}dx\) = \(\int-sin xcos xsin 3xdx\) = \(\frac{-1}2\int sin2xsin 3x dx\) = \(\frac{-1}4\int 2sin2xsin 3x dx\) = \(\frac{-1}4\int4[cos(2x-3x)-cos(2x+3x))dx\) = \(\frac{-1}4[\int cos xdx-\int cos 5xdx)\) = \(\frac{-1}4[sin x - \frac{sin 5x}5]\) u2 = \(\int\frac{\begin{vmatrix}cos x&0\\-sin x&cosxsin 3x\end{vmatrix}}{1}dx\) = \(\int\)cos2x sin 3x dx = \(\int\) \(\frac{1+cos2x}2sin3xdx\) = \(\frac12\)\(\int\)sin 3x dx + \(\frac14\)\(\int\)2sin 3x cos 2x dx = -\(\frac12\) \(\frac{cos 3x}3+\frac14\int\)(sin(3x + 2x) - sin (3x - 2x)]dx = -\(\frac16\)cos3x + \(\frac14\int\) sin 5x dx - \(\frac14\int\) sin x dx = -\(\frac16\) cos 3x - \(\frac1{20}\) cos 5x + \(\frac14\) cos x \(\therefore\) P.I. = u1y1 + u2y2 = -\(\frac14\)sin x cos x + \(\frac1{20}\) cos x sin 5x - \(\frac1{6}\)sin x cos 3x - \(\frac1{20}\) sin x cos 5x + \(\frac1{4}\) sin x cos x = \(\frac1{20}\) (cos x sin 5x - sin x cos 5x) - \(\frac1{6}\) sin x cos 3x \(\therefore\) y = C.F. + P.I. = C1 cos x + C2 sin x + \(\frac1{20}\) (cos x sin 5x - sin x cos 5x) - \(\frac1{6}\)sin x cos 3x (c) m3 + m2 + m = 0 m(m2 + m + 1) = 0 m = 0, \(\frac{-1\pm\sqrt3i}2\) C.F. = C1 + e-x/2(C2 cos(\(\frac{\sqrt{3x}}{2}\)) + C3 sin(\(\frac{\sqrt{3x}}{2}\))) P. I. = \(\frac{1}{D^3+D^2+D}\) (e2x + x2 + x) = \(\frac{e^{2x}}{8+4+2}+\frac1D\)(1 + (D + D2))-1 (x2 + x) = \(\frac1{14}e^{2x}\)+ (\(\frac1D\) - 1 - D + D + 2D2 - D2) (x2 + x) = \(\frac1{14}e^{2x}\) + (\(\frac1D\) - 1 + D2) (x2 + x) = \(\frac1{14}e^{2x}\) + \(\frac{x^3}3-\frac12x^2-x+2\) y = C.F. + P.I. = C1 + e-x/2(C2cos(\(\frac{\sqrt{3x}}{2}\)) + C3sin(\(\frac{\sqrt{3x}}{2}\))) + \(\frac1{14}e^{2x}\) + \(\frac{x^3}3-\frac{x^2}2-x+2\) 6. (a) Let x = ez Then xd = \(\frac d{dz}=D'\) x2D2 = D' (D' - 1) Given D.E. converts to (D' (D' - 1) - 4D' + 6)y = eyz ⇒ ((D')2 - 5D' + 6)y = eyz m2 - 5m + 6 = 0 by taking D' = m ⇒ m = 2, 3 C.F. = C1e2z + C2e3z P.I. = \(\frac{1}{(D')^2 - 5D' + 6}e^{yz}\) = \(\frac{e^{4z}}{4^2-5\times4+6}\) = \(\frac{e^{4z}}2\) \(\therefore\) y = C.F. + P. I. = C1(ez)2 + C2(ez)3 + \(\frac12\)(ez)4 = C1x2 + C2x3 + \(\frac{x^4}2\) (\(\because\) ez = x) (b) (x2D2 + xD + 1)y = log x + cos (log x) Let x = ez Then given D.E. converts to (D'(D'- 1) + D' + 1)y = a + cos z ⇒ ((D')2 + 1)y = z + cos z \(\therefore\) m2 + 1 = 0 m = \(\pm i\) C.F. = C1cos z + C2 sin z P.I = \(\frac1{(D')^2+1}\)(z + cos z) = (1 - (D')2 + (D')4+....) z + \(\frac{z}2\)sin z = z + \(\frac{z}2\) sin z \(\therefore\) y = C.F. + P. I. = C1cos z + C2 sin z + z + \(\frac{z}2\) sin z = C1cos(log x) + C2 sin (log x) + log x + \(\frac{log x}2\) sin (log x) (c) (x + 1)2\(\frac{d^2y}{dx^2}\) - 3(x + 1) \(\frac{dy}{dx}\) + 4y = x Let x + 1 = ez Then D.E. converts to (D'(D'-1) - 3 D' + 4)y = ez - 1 ⇒ ((D')2 - 4D' + 4)y = ez - 1 ⇒ (D' - 2)2y = ez - 1 \(\therefore\) (m - 2)2 = 0 m = 2, 2 C.F. = (C1 + C2z)e2z P.I. = \(\frac{1}{(D'-2)^2}(e^z-e^{0z})\) = \(\frac{e^z}{(1-2)^2}-\frac{e^{0z}}{(0-z)^2}\) = \(\frac{e^z}1-\frac14\) \(\therefore\) y = C.F. + P. I. = (C1 + C2z)e2z + ez - \(\frac14\) = (C1 + C2 log x) x2 + x - 1/4 is solution of given differential equation. |
|
| 48. |
Shown below is a differential equation. \[ y= e ^{\sin \left(\frac{d^{3} y}{d x^{3}}\right)^{2}}+\left(\frac{d y}{d x}\right)^{4} \]Find the order and the degree of the given differential equation. Give reasons to support your answer. |
|
Answer» The differential equation is y = esin\((\frac{d^3y}{dx^3})^2+(\frac{dy}{dx})^4\) Highest order derivative is \(\frac{d^3y}{dx^3}\) But differential equation is not a polynomial equation in derivative of y. ∴ Degree is not defined Order = Order of highest order derivative=3 Hence, order of differential equation is 3 but degree is not defined. |
|
| 49. |
Solve the differential equation \[ \frac{d^{2} x}{d t^{2}}-4 \frac{d x}{d t}+13 x=0 \text { with } x(0)=0, \frac{d x}{d t}(0)=2 \] |
|
Answer» Given differential equation is \(\frac{d^2x}{dt^2}-4\frac{dx}{dt}+13x=0\) It's auxiliary equation is m2 - 4m + 13 = 0 ⇒ m = \(\frac{4\pm\sqrt{16-52}}2\) = \(\frac{4\pm 6i}2\) = 2\(\pm\)3i ∴ x = e2t(C1 cos 3t + C2 sin 3t) \(\frac{dx}{dt} \) = e2t(2C1 cos 3t + 2C2 sin 3t - 3C1 sin 3t + 3C2 cos 3t) = e2t((2C1 + 3C2) cos 3t + (2C2 - 3C1) sin 3t) Given that x(0) = 0 ∴ C1 = 0 also given that \(\frac{dx}{dt}(0)=2\) ∴ 2C2 = 2 ⇒ C2 = 2/3 ∴ x = e2t(2/3 sin 3t) ⇒ 2/3 e2t sin 3t which is solution of given differential equation. |
|
| 50. |
Solve the differential equation \[ y^{\prime \prime \prime}(t)+2 y^{\prime \prime}(t)+y^{\prime}(t)=0 \] |
|
Answer» It's auxiliary equation is m3 + 2m2 + m = 0 ⇒ m(m2 + 2m + 1) = 0 ⇒ m(m + 1)2 = 0 ⇒ m = 0, -1, -1 ∴ y = C.F. = C1e0x + (C2 + C3x)e-x ⇒ y = C1 + (C2 + C3x)e-x which is solution of given differential equation. |
|