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
Statement to change column value
UPDATE table_name SET column_name = value
26
UPDATE table_name SET column_name = value
Statement to change column value
27
Statement to delete specific value from table
DELETE FROM table_name WHERE (condition);
28
DELETE FROM table_name WHERE (condition);
Statement to delete specific value from table
29
Statement to set default on attribute
ALTER TABLE table_name ALTER COLUMN column_name SET DEFAULT (value);
30
Statement to add primary key into table
ALTER TABLE table_name ADD PRIMARY KEY table_name_pk (attribute_name);
31
Statement to add column to table
ALTER TABLE table_name ADD COLUMN column_name VARCHAR(20);
32
Statement to get rid of default value
ALTER TABLE table_name ALTER column_name DROP DEFAULT;
33
Statement to change datatype of column
ALTER TABLE table_name MODIFY COLUMN column_name VARCHAR(20);
34
ALTER TABLE table_name MODIFY COLUMN column_name VARCHAR(20);
Statement to change datatype of column
35
Statement to find any values that start with ‘a’
WHERE column_name LIKE ‘a%’
36
WHERE column_name LIKE ‘a%’
Statement to find any values that start with ‘a’
37
Statement to find any values that end with ‘a’
WHERE column_name LIKE ‘%a’
38
WHERE column_name LIKE ‘%a’
Statement to find any values that end with ‘a’
39
Statement to find any values that have ‘a’ in any position
WHERE column_name LIKE ’%a%’
40
WHERE column_name LIKE ’%a%’
Statement to find any values that have ‘a’ in any position
41
Statement that finds any values that have ‘a’ in the second position
WHERE column_name LIKE ‘_a%’
42
WHERE column_name LIKE ‘_a%’
Statement that finds any values that have ‘a’ in the second position
43
Statement to find any values that start with ‘a’ and are at least 3 characters in length
WHERE column_name LIKE ‘a__%’
44
WHERE column_name LIKE ‘a__%’
Statement to find any values that start with ‘a’ and are at least 3 characters in length
45
Statement to find any values that start with ‘a’ and end ‘o’
WHERE column_name LIKE ‘a%o’
46
WHERE column_name LIKE ‘a%o’
Statement to find any values that start with ‘a’ and end ‘o’
47
Statement to drop primary key
ALRER TABLE table_name DROP PRIMARY KEY
48
Statement to add unique value an existing column
ALTER TABLE table_name ADD UNIQUE (column_name)
49
ALTER TABLE table_name ADD UNIQUE (column_name)
Statement to add unique value an existing column
50
Statement to format decimals
DECIMAL(totalSize, decimalPlaces)
51
Statement to add column after another column
ALTER TABLE table_name ADD COLUMN column_name VARCHAR(20) AFTER column_name
52
What does the graph of the tangent like do when a function’s graph has a kink?
Vertical asymptotes at x=0 line
53
Vertical asymptotes at x=0 line for graph of derivative when
Original graph has a kink
54
Do this example: Find the points on the curve y=x^4-16x^2 +2 where the tangent like is horizontal
Find derivative and set equal to 0. Solve to get 0, √8, and -√8
55
What is the derivative of 2^30?
0 because it counts as a constant
56
What is the derivative of a log: log(a) (x)
1 / xln(a)