Você está na página 1de 8

Introduction Quiz 1 Quiz 1 covers the content of Topic 1.

Question 1 of 6 Suppose f(x) = x^2 + 1. (Note that ^ is the "power of" function; x^2 represents "x squared".) Which one of the following represents f(f(x))? f(f(x)) = x^4 + 2x^2 + 1 f(f(x)) = (x^2 + 1)^2 + 1 f(f(x)) = x^4 + 1 f(f(x)) = (x^2 + 1)^2

b Question 2 of 6 A piecewise function f is defined by: f(x) = 2x + 1 when x is less than 1, and f(x) = d otherwise. What value of d makes f continuous at x = 1? no value of d 3 1 2 b Question 3 of 6 Can the final exam of MATHS 108 count for 100% of your mark? No. It will count for 60% of your mark. Yes - but only if you attend all 5 tutorials. Yes. You can skip all other assessments and just sit the final exam. Yes - but only if you pass the test. a Question 4 of 6 What is the natural domain of the function f(x) = 5/x ? all real numbers all real numbers except x = 0 and x = 5

all real numbers except x = 5 all real numbers except x = 0 d Question 5 of 6 The Matlab command for finding the limit of an expression y as x tends to c is: >> limit(y,x,c) Matlab uses NaN to say a limit does not exist, and Inf to say a limit is infinity. What is limit(sin(x),x,0) ? Nan 0 Inf 1 b Question 6 of 6 Consider the following unit circle.

Which one of the following is FALSE? 0 < t < 1.571 x0 + y0 = 1 0 < x0 < 1

0 < y0 < 1 a is incorrect quiz 2 Question 1 of 6 Which one of the following lines is not parallel to the other three? x = (0,1,2) + t(1,1,1) x = t(1,2,3) + (1,1,1) x = (0,1,2) + t(2,2,2) x = (1,2,3) + t(1,1,1) Question 2 of 6 Consider the following plane. 2x + 3y + 4z = 7 Which of the following statements is TRUE? This plane is parallel to the plane 2x - 3y - 4z = 0. The point (2,1,1) lies on this plane. This plane is perpendicular to the plane 4x + 6y + 8z = 14. The point (0,1,1) lies on this plane. 3 of 6 Which one of the following pairs of vectors are parallel? (0,1,2) and (1,2,3) (1,1,-1) and (1,-1,1) (1,2,3) and (3,2,1) (-1,-2,-3) and (1,2,3)

What is the derivative of x sin x with respect to x? -3x cos x 3x sin x + x cos x 3x sin x - x cos x 3x cos x What is the derivative of y = (x + 1) / (x - 1) ? y' = 2x / (x - 1)

y' = -2x / (x 1) y' = 2 / (x - 1) y' = -2 / (x - 1) What is the derivative of f(x) = 5 ln(x) ? f ' (x) = 5 / x f ' (x) = ln(x) f ' (x) = 5 / x f ' (x) = 1 / 5x 4 of 6 What is the derivative of y = log(sin x)? y' = (cos x) / x y' = sin x / cos x y' = 1 / (cos x) y' = cos x / sin x Question 5 of 6 Which one of the following functions in increasing over its whole domain? g(x) = cos x g(x) = x 3x g(x) = ln x g(x) = |x| 6 of 6 Suppose f is a function which is twice-differentiable everywhere, with values as given below. f (c) = 1 f (d) = 0 f (e) = 2 f ' (c) = 0 f ' (d) = 0 f ' (e) = 0 f '' (c) = -1 f '' (d) = 2 f '' (e) = 0

Which one of the following is TRUE? There is a relative minimum at (c,1) There is a relative maximum at (e,1) There is a relative maximum at (c,1) There is a relative minimum at (d,1)

Time remaining: 00:02:53 Assessment progress: 240% Question 1 of 6 Suppose the square matrix A is not invertible. How many solutions does the equation Ax = b have? none one it depends on b infinitely many Question 2 of 6 Given the vectors u = (1, 0, 1) and v = (0, 1, 2), which of the following is the cross product of u with v? (-1, 1, 1) (2, 2, 1) 2 (-1, -2, 1) Question 3 of 6 Which one of the following is NOT an allowable row operation? Swap Row 1 and Row 2 Divide every entry in Row 1 by the first non-zero entry in Row 1 Multiply every entry in Row 2 by 2 Change the top left entry to a 1, leaving all other entries the same Question 4 of 6 The Matlab command rref row reduces an augmented matrix to its reduced row echelon form. A system of linear equations has augmented matrix M. The output of >> rref(M) is ans = 1 0 8 0 1 0 1 1 0 3 0 0 0 1 1

How many solutions does the system of equations have? two infinitely many none one Question 5 of 6 (Matrices in this question are represented in Matlab notation, with rows separated by a ; .) What is the inverse of the matrix [5, 2; 3, 1] ? [-1, 2; 3, -5] [1, -2; 3, -5] [-1, -2; -3, 5] [1, 2; 3, 5] Question 6 of 6 What will be the final output of the following Matlab, finding the determinant of the 3 by 3 matrix A? >> A A= 0 1 0 1 1 1 1 2 0

>> det(A) ans =

3 1 2 0

Question 1 of 6 Suppose the square matrix A has |A| = 0. How many solutions does the equation Ax = b have? none it depends on b one

infinitely many Question 2 of 6 Given the vectors u = (2, 3, 0) and v = (0, 2, 1), which of the following is the cross product of u with v? 6 (3, -2, 4) (2, 1, 2) (3, -2, 2) Question 3 of 6 Let k be a non-zero scalar. Which one of the following is NOT an allowable row operation on an an augmented matrix? Divide every entry in Row 1 by k Swap Row 1 and Row 2 Add k to every entry in Row 1 Multiply every entry in Row 1 by k Question 4 of 6 The Matlab command rref row reduces an augmented matrix to its reduced row echelon form. A system of linear equations has augmented matrix M. The output of >> rref(M) is ans = 1 0 8 0 1 0 1 1 0 3 0 0 0 1 1

How many solutions does the system of equations have? none two one infinitely many Question 5 of 6 (Matrices in this question are represented in Matlab notation, with rows separated by a ; .) What is the inverse of the matrix [1, 4; 0, 2.5] ?

[1, -4; 0, 2.5] [-1, 4; 0, -2.5] [0.4, -1.6; 0, 1] [1, -1.6; 0, 0.4] Question 6 of 6 What will be the final output of the following Matlab, finding the determinant of the 3 by 3 matrix A? >> A A= 0 1 0 1 1 1 1 2 0

>> det(A) ans =

2 0 3 1

Você também pode gostar