Study Flashcards

1
Q

Differentiate this problem:

y=ln(x+1 / √x-2

A

1/ x+1 - 1 /√x-2 • 1 /2√x-2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Do this example:

Differentiate:

f(x)=log(10) (2+sinx)

A

u=2+sinx and y=log(10) (u)

f’(x)=dy/dx=dy/du • du/dx

f’(x)=1/ u(ln(10)) • cosx

f’(x)=1/ (2+sinx)(ln(10)) • cosx

=cosx/ (2+sinx)(ln(10))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you use the squeeze theorem for lim(x^2 (cos(7πx)) = 0
x—>0

A

Range of cos functions is always -1 to 1, so:

-1 <= cos(7πx) <= 1.

Multiply all by f(x) to get:

-x^2 <= x^2 (cos(7πx)) <= x^2.

All of these have limit 0 as x—>0 so by squeeze theorem, g(x) (the middle function)
approaches 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If you get a positive and negative limit for a problem like:

lim 8x+56 / |x+7|
x—>-7

A

Limit DNE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Do this example:

lim 8-|x| / 8+x
x—>-8

A

1 because when x is positive, the answer is unsolved and therefore DNE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why is this undefined?:

g(x)= { 2-x^2 if 1 < x <= 2
{ x-3 if x > 2

Evaluate lim g(x)
x—>2

A

Because it is equal to two and not equal to two at the same time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Do these examples:
lim [[x]] lim [[x]] lim [[x]]
x—>-5+ x—>-5 x—>-5.2

lim [[x]] lim [[x]]
x—>n- x—>n+

A
-5
DNE
-6
n-1
n
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Do this example:

Find number a such that the limit exists:

lim 3x^2 + ax + a + 6 / x^2 + x -2
x—>-2

A

Find the denominator number with opposite sign of limit (x+2).

Replace numerator (x) value with limit value and solve only numerator to get a.

Replace a into original equation for new equation and then solve for limit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

If lim f(x) = 0 and lim g(x)
x—>3 x—>3
does lim f(x) / g(x) exist?
x—>3

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

When both functions’ limits equal 0, what CAN exist?

A

The division of the limits of these functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

If g is continuous at a and f is continuous at g(a), then

A

The composite function (f o g) given by (f o g)(x) = f(g(x)) is continuous at a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The composite function (f o g) given by (f o g)(x) = f(g(x)) is continuous at a when

A

g is continuous at a and f is continuous at g(a)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which types of functions are continuous at every number in their domain?

A

Polynomials, rationals, roots, trigs, inverse trigs, exponentials, logarithmic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Polynomials, rationals, roots, trigs, inverse trigs, exponentials, logarithmic

A

Functions continuous at every number in their domain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Why is the discontinuity at x=1 of

f(x)={ x+8 if x<0
{ e^x if 0 <= x <= 1
{ 9-x if x > 1

only continuous from the left?

A

Because there is a jump when x<0 and 0<=x<=1 in which the only actual defined points are at the second function (closed circle)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Do this example:

For what value of the constant c is the function f continuous on
(-∞, ∞)?

f(x)={ cx^2 + 2x if x< 5
{ x^3 - cx if x>= 5

A

Plug in 5 for x for both equation. Set these derived equations equal to each other and solve for c to get 115/30

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

All types

A

CHAR, INT, SMALLINT, VARCHAR, TINYINT, MEDIUMINT, BIGINT, DECIMAL, DATE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Statement to add constraint to column

A

ALTER TABLE table_name MODIFY COLUMN column_name VARCHAR(20) NOT NULL;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

ALTER TABLE table_name MODIFY COLUMN column_name VARCHAR(20) NOT NULL;

A

Statement to add constraint to column

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Make an attribute not negative

A

UNSIGNED constraint

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Statement to return a number to 2 decimal places

A

SELECT TRUNCATE(num1/num2, 3);

to return to “3” decimal places

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

SELECT TRUNCATE(num1/num2, 3);

A

Returns number to 3 decimal places

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Return remainder of number

A

SELECT attribute/number MOD 60;

Will return remainder of division by 60

24
Q

SELECT attribute/number MOD 60;

A

Will return remainder of division by 60

25
Q

Statement to change column value

A

UPDATE table_name SET column_name = value

26
Q

UPDATE table_name SET column_name = value

A

Statement to change column value

27
Q

Statement to delete specific value from table

A

DELETE FROM table_name WHERE (condition);

28
Q

DELETE FROM table_name WHERE (condition);

A

Statement to delete specific value from table

29
Q

Statement to set default on attribute

A

ALTER TABLE table_name ALTER COLUMN column_name SET DEFAULT (value);

30
Q

Statement to add primary key into table

A

ALTER TABLE table_name ADD PRIMARY KEY table_name_pk (attribute_name);

31
Q

Statement to add column to table

A

ALTER TABLE table_name ADD COLUMN column_name VARCHAR(20);

32
Q

Statement to get rid of default value

A

ALTER TABLE table_name ALTER column_name DROP DEFAULT;

33
Q

Statement to change datatype of column

A

ALTER TABLE table_name MODIFY COLUMN column_name VARCHAR(20);

34
Q

ALTER TABLE table_name MODIFY COLUMN column_name VARCHAR(20);

A

Statement to change datatype of column

35
Q

Statement to find any values that start with ‘a’

A

WHERE column_name LIKE ‘a%’

36
Q

WHERE column_name LIKE ‘a%’

A

Statement to find any values that start with ‘a’

37
Q

Statement to find any values that end with ‘a’

A

WHERE column_name LIKE ‘%a’

38
Q

WHERE column_name LIKE ‘%a’

A

Statement to find any values that end with ‘a’

39
Q

Statement to find any values that have ‘a’ in any position

A

WHERE column_name LIKE ’%a%’

40
Q

WHERE column_name LIKE ’%a%’

A

Statement to find any values that have ‘a’ in any position

41
Q

Statement that finds any values that have ‘a’ in the second position

A

WHERE column_name LIKE ‘_a%’

42
Q

WHERE column_name LIKE ‘_a%’

A

Statement that finds any values that have ‘a’ in the second position

43
Q

Statement to find any values that start with ‘a’ and are at least 3 characters in length

A

WHERE column_name LIKE ‘a__%’

44
Q

WHERE column_name LIKE ‘a__%’

A

Statement to find any values that start with ‘a’ and are at least 3 characters in length

45
Q

Statement to find any values that start with ‘a’ and end ‘o’

A

WHERE column_name LIKE ‘a%o’

46
Q

WHERE column_name LIKE ‘a%o’

A

Statement to find any values that start with ‘a’ and end ‘o’

47
Q

Statement to drop primary key

A

ALRER TABLE table_name DROP PRIMARY KEY

48
Q

Statement to add unique value an existing column

A

ALTER TABLE table_name ADD UNIQUE (column_name)

49
Q

ALTER TABLE table_name ADD UNIQUE (column_name)

A

Statement to add unique value an existing column

50
Q

Statement to format decimals

A

DECIMAL(totalSize, decimalPlaces)

51
Q

Statement to add column after another column

A

ALTER TABLE table_name ADD COLUMN column_name VARCHAR(20) AFTER column_name

52
Q

What does the graph of the tangent like do when a function’s graph has a kink?

A

Vertical asymptotes at x=0 line

53
Q

Vertical asymptotes at x=0 line for graph of derivative when

A

Original graph has a kink

54
Q

Do this example:

Find the points on the curve y=x^4-16x^2 +2 where the tangent like is horizontal

A

Find derivative and set equal to 0. Solve to get 0, √8, and -√8

55
Q

What is the derivative of 2^30?

A

0 because it counts as a constant

56
Q

What is the derivative of a log:

log(a) (x)

A

1 / xln(a)