Questions with In-depth Explanations
PS: Please note that some solutions might not be unique, and some can
represent a family of solutions.
Q:
1. What is the value of the determinant of the following matrix?
A = [[3, 2], [4, 5]]
Answer: 1
Explanation:
The determinant of a 2x2 matrix can be found by multiplying the entries on the main diagonal
(top-left to bottom-right) and subtracting the product of the entries on the other diagonal
(top-right to bottom-left). In this case, (35) - (24) = 15 - 8 = 1.
Q:
2. Integrate x^3 + x^2 with respect to x.
Answer: x^4/4 + x^3/3 + C (C is a constant)
Explanation:
To integrate x^3 + x^2 with respect to x, we can use the power rule for integration, which
states that the integral of x^n with respect to x is (x^(n+1))/(n+1) + C. So the integral of x^3 is
(x^4)/4 + C, and the integral of x^2 is (x^3)/3 + C. Adding these two integrals together, we
get (x^4)/4 + (x^3)/3 + C.
Q:
3. Solve the following system of equations:
y = 2x + 1
y = -3x + 7
Answer: x = 2, y = 5
Explanation:
To solve a system of equations, we can substitute one equation into the other and solve for a
variable. In this case, we can substitute y = 2x + 1 into y = -3x + 7, so we have 2x + 1 = -3x +
7. Solving for x, we find that x = 2. We can then substitute this value of x back into either of
the original equations to find the value of y, in this case y=5
Q:
4. Differentiate y = sin^2(x) with respect to x.
Answer: 2sin(x)cos(x)
, Explanation:
To differentiate y = sin^2(x), we can use the chain rule and the fact that the derivative of
sin(x) is cos(x). So we have d/dx(sin^2(x)) = d/dx(sin(x) * sin(x)) = 2*sin(x)*cos(x)
Q:
5. Find the equation of the line that passes through the point (4, 7) and has a slope of
-3.
Answer: y = -3x + 19
Explanation:
To find the equation of a line given a point and a slope, we can use the point-slope form of a
line, which is y - y1 = m(x - x1), where (x1, y1) is a point on the line, and m is the slope. In
this case, we have (x1, y1) = (4, 7), and m = -3. So we have y - 7 = -3(x - 4). Expanding this,
we get y = -3x + 19.
Q:
6. What is the value of the limit as x approaches 0 of sin(x) / x?
Answer: 1
Explanation:
The limit of the function sin(x) / x as x approaches 0 is equal to the limit of the function sin(x)
as x approaches 0, which is 1, since sine is a continuous function and its limit as x goes to 0
is sin(0) =0
Q:
7. Find the area of the circle with radius 5.
Answer: 25π
Explanation:
The area of a circle with radius r is given by πr^2. In this case, the radius is 5, so the area is
π * 5^2 = 25π.
Q:
8. What is the dot product of the vectors u = [1, 2, 3] and v = [4, 5, 6]?
Answer: 32
Explanation:
The dot product of two vectors u and v is given by u · v = u1v1 + u2v2 + u3v3. In this case, u
= [1, 2, 3] and v = [4, 5, 6], so the dot product is (1)(4) + (2)(5) + (3)(6) = 4 + 10 + 18 = 32