Data Science & Analytics Graduate Program Prerequisite Self-Assessment
Data Science & Analytics Graduate Program Prerequisite Self-Assessment
Graduate Program
Prerequisite Self-Assessment
2 Calculus
1. Compute the following limit (or explain it does not exist).
√
x−1
lim
x→1 x − 1
1
x≥
3x + 5 if 0
2. For what value of k is f (x) = continuous at
x+k
if x < 0
x−2
x = 0?
2 1
3. Compute the derivative of f (x) = x sin .
x
x
5. Sketch the graph of f (x) = . Identify any asymptotes, critical
x2 + 9
points, singular points, local extrema, inflection points, intervals of in-
crease/decrease, and intervals of concave up/ concave down.
3 Linear Algebra
1. With full explanation, find the general solution in parametric form of the
following system of linear equations.
x +y −z +2w = 2
2x +2y −z +3w = −1
2. Let
1 0 −3 −2 0
0 1 2 −1 0
A=
0 0
.
0 0 1
0 0 0 0 0
2
1 0 0
5. Consider the matrix A = 0 3 −2 .
0 2 −1
Pre-condition: n ≥ 1
i ← n;
while i 6= 1 do
if i is divisible by 2 then
i ← i/2;
else
return false;
end
end
return true;