Exams › GATE › Engineering Mathematics
Solution of the variables x1 and x2 for the following equations is to be obtained by employing the Newton-Raphson iterative method.
equation (i) 10x2 sin x1 - 0.8 = 0
equation (ii) 10x2² - 10x2 cos x1 - 0.6 = 0
Assuming the initial values x1 = 0.0 and x2 = 1.0, the Jacobian matrix is
- [10 -0.8; 0 -0.6]
- [10 0; 0 10]
- [0 -0.8; 10 -0.6]
- [10 0; 10 -10]
Correct answer: [10 0; 0 10]
Solution
J = [[10 x2 cos x1, 10 sin x1],[10 x2 sin x1, 20 x2 - 10 cos x1]]. At x1=0, x2=1 this gives [[10,0],[0,10]] (idx 1). The stored idx 2 [0 -0.8; 10 -0.6] is wrong.
Related GATE Engineering Mathematics questions
⚔️ Practice GATE Engineering Mathematics free + battle 1v1 →