Mathematical Functions and Expressions set 7

Que.While solving a differential equation, MATLAB will show us the ___________
a. General Solution
b. Particular Solution
c. Complementary function
d. Depends on the equation
Que.An example of a function whose derivative (any order) with respect to x is never 0, in MATLAB, is _______
a. sin(x)
b. x
Que.The output of the following code will be _____________
syms t; dsolve(D(y,t)==2*t)

a. Error
b. t²
c. t
d. t²+C
Que.What is the co-efficient of the output of the code?
diff(x
Que.The output of the following code will be _____________
syms t; dsolve(D(y,t)==2*t)

a. Error
b. t²
c. t
d. t²+C
Que.What is the co-efficient of the output of the code?
diff(x⁹⁰,39)

a. 0
b. 90!/39!
c. 90!/50!
d. Error
Que.What is the error in the following code?
diff(‘x⁸⁷+86’,23)

a. No error
b. Arguments as strings
c. 23 is not given within a pair of inverted commas
d. There is no command as diff
Que.The ode 23 solver is for higher accuracy.
a. True
b. False
c. May be True or False
d. Can't say
Que.The ode45 takes the function as ___________
a. Simple input argument
b. String argument
c. Input argument
d. Function argument
Que.What is the output of the following code?
syms y; dsolve('y*diff(y)+5=x*exp(3)','y')

a. Error
b. C + (x*(x*exp(3) – 10))/2
c. Cannot be determined
d. 0
Que.There are 7 ODE solvers in MATLAB.
a. True
b. False
c. May be True or False
d. Can't say
Que.The int() function gives the __________
a. general solution of the ODE
b. general solution of the function
c. particular integral of a function
d. complementary function