-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02-DifferentialCalculus.Rmd
More file actions
2242 lines (1216 loc) · 52.7 KB
/
02-DifferentialCalculus.Rmd
File metadata and controls
2242 lines (1216 loc) · 52.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# (PART) Differential Calculus {-}
# Exponential and Logarithmic Functions
## Lecture Content
[**Video: Logarithms**](https://youtu.be/PCHQAFFvGLc)
[**Video: Quadratic Functions and Models**](https://youtu.be/frWepga5lgc)
[**Video: Exponential Functions and Models**](https://youtu.be/qV-HYR-iBSs)
[**Video: Logarithmic Functions and Models**](https://youtu.be/nBoc5u7ucFU)
---
## Lecture Notes
### Rules for Exponents
Let \( a > 0 \), and \( m, n \in \mathbb{R} \):
- \( a^m \cdot a^n = a^{m+n} \)
- \( \frac{a^m}{a^n} = a^{m-n} \)
- \( (a^m)^n = a^{mn} \)
- \( (ab)^n = a^n b^n \)
- \( a^0 = 1 \)
- \( a^{-n} = \frac{1}{a^n} \)
---
### Rules for Logarithms
Let \( a > 0 \), \( a \neq 1 \), and \( x, y > 0 \):
- \( \log_a(xy) = \log_a(x) + \log_a(y) \)
- \( \log_a\left(\frac{x}{y}\right) = \log_a(x) - \log_a(y) \)
- \( \log_a(x^n) = n \cdot \log_a(x) \)
- \( \log_a(a) = 1 \)
- \( \log_a(1) = 0 \)
---
### Finding an Exponential Equation from Two Points
To find \( f(x) = C \cdot a^x \) that passes through points \( (x_1, y_1) \) and \( (x_2, y_2) \):
1. Set up the system:
\[
y_1 = C \cdot a^{x_1} \\
y_2 = C \cdot a^{x_2}
\]
2. Divide the two equations to eliminate \( C \):
\[
\frac{y_2}{y_1} = \frac{a^{x_2}}{a^{x_1}} = a^{x_2 - x_1}
\]
3. Solve for \( a \):
\[
a = \left( \frac{y_2}{y_1} \right)^{\frac{1}{x_2 - x_1}}
\]
4. Plug back into one equation to solve for \( C \).
---
### Solving Exponential and Logarithmic Equations
#### Exponential Equations{-}
To solve \( a^{f(x)} = b \):
1. Take logarithms of both sides:
\[
\log(a^{f(x)}) = \log(b)
\]
2. Use the power rule:
\[
f(x) \cdot \log(a) = \log(b)
\]
3. Solve for \( x \).
---
#### Logarithmic Equations {-}
To solve \( \log_a(f(x)) = b \):
1. Rewrite in exponential form:
\[
f(x) = a^b
\]
2. Solve the resulting algebraic equation for \( x \).
---
### Applications and Formulas
#### Continuous Compounding {-}
If interest is compounded continuously:
\[
A = Pe^{rt}
\]
Where:
- \( A \) = final amount
- \( P \) = principal
- \( r \) = annual interest rate
- \( t \) = time in years
- \( e \approx 2.718 \)
---
#### Total Revenue from Demand Function {-}
If price \( p(x) \) depends on demand \( x \) (e.g. \( p(x) = 120 - 3x \)), then:
\[
R(x) = x \cdot p(x)
\]
Where:
- \( R(x) \) = total revenue
- \( x \) = quantity sold
- \( p(x) \) = price per unit as a function of demand
You can expand and simplify to analyze maximum revenue using calculus or vertex form (if quadratic).
---
## Examples
### Quadratic Functions
[**Video: Solutions **](https://www.youtube.com/watch?v=dsS6JHuwyzA)
1. Identify \(a\), \(b\), and \(c\) in the equation below, then solve using the Quadratic Formula.
\[
x^2 + 18x + 80 = 0
\]
2. Determine the number and type of solutions for the equation:
\[
-2x^2 -9x -9 = 0
\]
3. The equation
\[
5x^2 +15x +4 = 0
\]
has two solutions. Find them.
4. Consider the quadratic function:
\[
f(x) = 9x^2 - 1
\] Find the:
- Vertex
- Largest \(x\)-intercept
- \(y\)-intercept
5. Consider the parabola given by:
\[
f(x) = -4x^2 -8x +14
\]
Answer the following:
a. The graph of this function opens: ☐ Up ☐ Down
b. Domain (interval notation):
c. Range (interval notation):
6. The Acme Widget Company has found that if widgets are priced at \$218, then \(14,000\) will be sold. For every increase of \$13, there will be 300 fewer widgets sold. The marginal cost is \$130.80 per widget. Fixed costs are \$12,000. If \(x\) represents the price of a widget, find:
a. Number of widgets sold
b. Revenue
c. Cost of production
d. Profit
e. Price that maximizes profit
---
### Exponent Rules
[**Video: Solutions **](https://www.youtube.com/watch?v=V3n2uVAkdn4)
1. Simplify the expression completely:
\[
\frac{x^{22} \cdot y^{79}}{x^{16} \cdot y^{20}}
\]
2. Simplify the given expression:
\[
\frac{(a^4 z^2)^4 \cdot (-a^2 z^2)^6}{\left( -a z^3 a^5\right)^2}
\]
3. Sketch each of the following:
a. \(4(0.65)^x\)
b. \(3(1.17)^x\)
c. \(4(1.17)^x\)
d. \(4(1.52)^x\)
e. \(4(0.88)^x\)
4. Use the like-bases property and exponents to solve:
\[
\left( \frac{1}{5} \right)^{x+7} = 5^{7x+4}
\]
5. The population of the world in 1987 was 5 billion and the annual growth rate was estimated at 2% per year. Assuming an exponential growth model, find the projected world population in 1992.
---
### Logarithm Rules
[**Video: Solutions **](https://www.youtube.com/watch?v=c5rwovJLt24)
1. Express the equation in exponential form.
a.
\[
\log_{2} 8 = 3
\]
That is, write your answer in the form \( 2^A = B \).
b.
\[
\log_{5} 3125 = 5
\]
That is, write your answer in the form \( 5^C = D \).
2. Simplify:
\[
\log_{z} \left( \left( \frac{1}{z} \right)^{6} \right)
\]
3. If \(\ln(a) = 2\), \(\ln(b) = 3\), and \(\ln(c) = 5\), evaluate the following:
a.
\[
\ln\left( a^{a} b^{-2} c^{-2} \right)
\]
b.
\[
\ln\left( \sqrt{b^1 c^{-2}a^{-4}} \right)
\]
c.
\[
\frac{\ln\left( a^{-4} b^{4} \right)}{\ln\left( \frac{b}{c} \right)^{2}}
\]
d.
\[
\left( \ln c^{-2}\right) \left( \ln \frac{a}{b^3}\right)^{4}
\]
4. Find the domain of:
\[
y = \log(5 - 6x)
\]
5. If \( e^{7x} = 27 \), then $x$ is what?
6. Solve for \( m \) in the equation below.
\[
2 \log_{8}(m) + 4 = 8
\]
7. Solve for \( x \):
\[
\log(x+5) - \log(x+3) = 1
\]
8. A culture of bacteria grows according to the continuous growth model:
\[
B = f(t) = 500 e^{0.073t}
\]
where \(B\) is the number of bacteria and \(t\) is in hours.
a. Find \(f(0)\)
b. To the nearest whole number, find the number of bacteria after 5 hours.
c. To the nearest tenth of an hour, determine how long it will take for the population to grow to 1100 bacteria.
---
## Practice Problems
1. Find the equation of the exponential function that passes through $(2,-4)$ and $(4,-16)$.
2. Solve $4^x = 3$.
3. Solve $4(1.5^{2x-1}) = 8$.
4. Solve $e^{2x} - 9e^x + 20 = 0$.
5. Why is the logarithm of a negative number not defined?
6. Sketch $f(x) = \log_5 x$ and $g(x) = 5^x$.
7. Suppose $\log(a) = 5$, $\log(b) = 3$ and $\log(c) = -2$. What is $\log\left(\dfrac{ab^4}{c^7} \right)$?
8. (Applied) How long will it take a \$500 investment to be worth \$700 if it is continuously compounded at 15\% per year? (Give the answer to two decimal places.)
9. (Applied) The Better Baby Buggy Co. has just come out with a new model, the Turbo. The market research department predicts that the demand equation for Turbos is given by
\[
q = -2p + 320,
\]
where $q$ is the number of buggies it can sell in a month if the price is \$p per buggy. At what price should it sell the buggies to get the largest revenue? What is the largest monthly revenue?
---
## Self Assessment
Time yourself and try to solve the following questions within twenty minutes.
1. Find the equation of the exponential function that passes through $(3,5)$ and $(4,25)$.
2. Solve $6^{3x+1} = 30$.
3. Suppose $\log(a) = 2$, $\log(b) = -7$ and $\log(c) = 3$. What is $\log\left(\dfrac{a^2b^3}{c^5} \right)$?
4. The median price of a home in the United States declined continuously over the period 2005–2008 at a rate of 5.5\% per year from around \$230 thousand in 2005. Write down a formula that predicts the median price of a home $t$ years after 2005. Use your model to estimate the median home price in 2007 and 2010.
5. In 2005, the Las Vegas monorail charged \$3 per ride and had an average ridership of about 28,000 per day. In December 2005 the Las Vegas Monorail Company raised the fare to \$5 per ride, and average ridership in 2006 plunged to around 19,000 per day.
a. Use the given information to find a linear demand equation.
b. Find the price the company should have charged to maximize revenue from ridership. What is the corresponding daily revenue?
c. The Las Vegas Monorail Company would have needed \$44.9 million in revenues from ridership to break even in 2006. Would it have been possible to break even in 2006 by charging a suitable price?
---
## Lesson Checklist
This checklist is designed to help you keep track of what you need to work on. The main goal is to be aware of what you need to focus more attention on. Place an $X$ in the appropriate box beside the skill below.
\bigskip
\noindent
\begin{align*}
&\textbf{Developing (D):} &&\textrm{You still need to work on this skill.}\\
&\textbf{Consistent (CON):} &&\textrm{You use the skill correctly most of the time.}\\
&\textbf{Competent (COM):} &&\textrm{You show mastery of the skill.}
\end{align*}
| Skill | D | CON | COM |
|---------------------------------------------------------------|----|-----|-----|
| Simplify expressions involving exponents or logarithms. | | | |
| Find the equation of an exponential function through two points.| | | |
| Solve exponential or logarithmic functions. | | | |
| Maximize the total revenue function, given a linear demand curve.| | | |
| Solve problems involving the continuous compounding formula. | | | |
| Solve applied problems involving exponentials or logarithms. | | | |
# Limits and Continuity
## Lecture Content
[**Video: Numerical and Graphical Approaches to Limits**](https://youtu.be/FPlR88H9_A0)
[**Video: Limits and Continuity**](https://youtu.be/eloHCkPZwos)
---
## Lecture Notes
### Estimate a Limit Using a Table of Values
To estimate a limit using a table:
- Choose values of \( x \) that get closer to the target from both sides (left and right).
- Observe how the function values \( f(x) \) behave.
- If the values approach a single number, that is the estimated limit.
**Example:**
If \( f(x) = \frac{x^2 - 1}{x - 1} \), use values close to 1 (e.g., 0.9, 0.99, 1.01, 1.1) to estimate \( \lim_{x \to 1} f(x) \).
---
### Use Factoring to Evaluate Limits
Factoring helps eliminate indeterminate forms like \( \frac{0}{0} \).
**Steps:**
1. Factor the numerator and denominator.
2. Cancel common factors.
3. Substitute the limit value.
**Example:**
Evaluate \( \lim_{x \to 2} \frac{x^2 - 4}{x - 2} \):
\[
\frac{(x - 2)(x + 2)}{x - 2} = x + 2 \Rightarrow \lim_{x \to 2} = 4
\]
---
### One-Sided Limits and Vertical Asymptotes
- **Left-hand limit:** \( \lim_{x \to a^-} f(x) \)
- **Right-hand limit:** \( \lim_{x \to a^+} f(x) \)
If the function approaches infinity or negative infinity near a point, it may indicate a vertical asymptote.
**Example:**
\[
\lim_{x \to 0^-} \frac{1}{x} = -\infty,\quad
\lim_{x \to 0^+} \frac{1}{x} = \infty
\]
---
### Dominant Term Analysis for Limits at Infinity
To evaluate limits as \( x \to \infty \), focus on the **dominant (highest degree)** terms.
**Steps:**
1. Identify the highest power term in the numerator and denominator.
2. Divide all terms by the dominant power of \( x \).
3. Simplify and take the limit.
**Example:**
\[
\lim_{x \to \infty} \frac{3x^2 + 5}{x^2 - 2x} = \lim_{x \to \infty} \frac{3 + 5/x^2}{1 - 2/x} = \frac{3}{1} = 3
\]
---
### Continuity of Piecewise Functions
To determine if a piecewise function is continuous at a point:
1. **Check function is defined:** \( f(a) \) exists.
2. **Evaluate both one-sided limits:** \( \lim_{x \to a^-} f(x) \) and \( \lim_{x \to a^+} f(x) \).
3. **Check limit equals value:** \( \lim_{x \to a} f(x) = f(a) \)
If all three conditions are met, the function is continuous at \( x = a \).
**Example:**
\[
f(x) =
\begin{cases}
x^2, & x < 2 \\
4x - 4, & x \geq 2
\end{cases}
\]
Check continuity at \( x = 2 \):
- \( f(2) = 4 \)
- \( \lim_{x \to 2^-} = 4 \), \( \lim_{x \to 2^+} = 4 \)
- Since limits and value agree: **continuous**
---
## Examples
### Limits
[**Video: Solutions **](https://youtu.be/QiA2DBzh0YU?si=agk2U7DCaVmjMCPm&t=143)
1. Find the following limit:
$$
\lim_{x \to 7} \frac{x^3 -3x^2 - 29x +7}{x - 7}
$$
2. Estimate the limit numerically or state that the limit does not exist:
$$
\lim_{x \to 121} \frac{\sqrt{x} - 11}{x - 121}
$$
3. Use numerical or graphical evidence to determine the left and right-hand limits of the function.
$$
\lim_{x \to 4^-} \frac{|5x - 20|}{x-4}
$$
$$
\lim_{x \to 4^+} \frac{|5x - 20|}{x-4}
$$
---
### One Sided Limits
[**Video: Solutions **](https://youtu.be/oDrHcYTWgqI?si=6cGoUKOEi0Z1i-Hb&t=100)
1. A function \( f(x) \) is said to have a **jump discontinuity** at \( x = a \) if:
a. \( \displaystyle \lim_{x \to a^-} f(x) \) exists.
b. \( \displaystyle \lim_{x \to a^+} f(x) \) exists.
c. The left and right limits are **not equal**.
Let
\[
f(x) =
\begin{cases}
6x-6, & \text{if } x < 8, \\
\frac{2}{x+6}, & \text{if } x \ge 8
\end{cases}
\]
Show that \( f(x) \) has a jump discontinuity at \( x = 8 \).
2. For what value of the constant \( c \) is the function \( f \) continuous on \( (-\infty, \infty) \) where
\[
f(x) =
\begin{cases}
x^2 - c & \text{if } t < 6, \\
cx + 9, & \text{if } t \ge 6
\end{cases}
\]
Find \( c \).
3. Given the function below, determine if the function is continuous at the point \( x = -4 \). If not, indicate why.
\[
f(x) =
\begin{cases}
2x+9, & \text{if } x < -4, \\
-2x - 7, & \text{if } x > -4
\end{cases}
\]
4. Given the function below, determine if the function is continuous at the point \( x = -1\). If not, indicate why.
\[
f(x) = \ln \|x+1\|
\]
---
### One Sided Limits
[**Video: Solutions **](https://www.youtube.com/watch?v=PNcd55vzKcI)
1. Let
$$
f(x) =
\begin{cases}
-\frac{12}{x+6}, & \text{if } x \le 0 \\
\frac{14}{x-7}, & \text{if } x > 0
\end{cases}
$$
Compute the quantities below.
a.
$$
\lim_{x \to -3^-} f(x) = \quad
$$
b.
$$
\lim_{x \to -3^+} f(x) = \quad
$$
c.
$$
f(-3) = \quad
$$
2. Evaluate the limit:
$$
\lim_{x \to \infty} \frac{5 + 5x}{8 - 4x}
$$
3. Evaluate the limit:
$$
\lim_{x \to \infty} \frac{8x + 7}{6x^2 - 7x + 7}
$$
4. Evaluate the limit:
$$
\lim_{x \to \infty} \frac{\sqrt{9 + 2x^2}}{7 + 6x}
$$
5. Evaluate:
$$
\lim_{t \to \infty} \frac{-3t - 9}{\sqrt{t^2 -4t + 5}}
$$
6. Evaluate the following limits:
a.
$$
\lim_{x \to \infty}\frac{8}{e^x - 9}
$$
b.
$$
\lim_{x \to -\infty} \frac{8}{e^x - 9}
$$
---
## Practice Problems
Practice the techniques discussed in class and in the online videos by solving the following examples.
1. Estimate $\lim_{x \to 2} e^{x-2}$.
2. Estimate $\lim_{x \to 0^+} \frac{-2}{x^2}$.
3. Evaluate $\lim_{x \to 0} \frac{x-3}{x-1}$.
4. Evaluate $\lim_{x \to 2} \frac{x^{2} - 8x + 12}{x-2}$.
5. Evaluate $\lim_{x \to -2} \frac{x+2}{x^{2} - 4}$.
6. Evaluate $\lim_{x \to \infty} e^{-x}$.
7. Evaluate $\lim_{x \to \infty} \frac{3x - x^{6} + 2}{3x^{3} + 2x}$.
8. Evaluate $\lim_{x \to -\infty} \frac{1 - 3x}{2x^{2} + 3}$.
9. Find a number $b$ so that
$$
f(x) = \begin{cases}
5x - 6 & x \leq 2 \\
-3x + b & x > 2
\end{cases}
$$
is continuous everywhere.
10. Find a number $a$ so that
$$
f(x) = \begin{cases}
ax - 3 & x \leq 3 \\
x + a & x > 3
\end{cases}
$$
is continuous everywhere.
11. (Applied) The percentage of movie advertising as a share of newspapers’ total advertising revenue from 1995 to 2004 can be approximated by
$$
p(t) = \begin{cases}
-0.07t + 6 & t \leq 4 \\
0.3t + 17 & t > 4
\end{cases}
$$
where $t$ is the time since 1995.
a. Compute $\lim_{t \to 4^-} p(t)$ and $\lim_{t \to 4^+} p(t)$ and interpret each answer.
b. Is the function $p$ continuous at $t = 4$? What does the answer tell you about newspaper revenues?
</span>
---
---
## Self Assessment
Time yourself and try to solve the following questions within twenty minutes.
1. Evaluate $\lim_{x \to -1} \frac{4x^2 + 1}{x}$.
2. Evaluate $\lim_{x \to -4} \frac{x + 4}{x^{2} - 16}$.
3. Evaluate $\lim_{x \to \infty} \frac{60 + e^{-x}}{2 - e^{-x}}$.
4. Your friend Fiona claims that the study of limits is silly; all you ever need to do to find the limit as $x$ approaches $a$ is substitute $x = a$. Give two examples that show she is wrong.
5. Find a number $b$ so that
$$
f(x) = \begin{cases}
2x + 1 & x \leq -3 \\
-x + b & x > -3
\end{cases}
$$
is continuous everywhere.
---
## Lesson Checklist
This checklist is designed to help you keep track of what you need to work on. The main goal is to be aware of what you need to focus more attention on. Place an $X$ in the appropriate box beside the skill below.
\bigskip
\noindent
\begin{align*}
&\textbf{Developing (D):} &&\textrm{You still need to work on this skill.}\\
&\textbf{Consistent (CON):} &&\textrm{You use the skill correctly most of the time.}\\
&\textbf{Competent (COM):} &&\textrm{You show mastery of the skill.}
\end{align*}
| Skill | D | CON | COM |
|----------------------------------------------------------------|----|-----|-----|
| Estimate a limit using a table of values or by direct substitution. | | | |
| Use factoring to evaluate a limit. | | | |
| Use dominant terms analysis to evaluate limits approaching infinity. | | | |
| Find a parameter to make a piecewise function continuous. | | | |
| Solve applied problems involving limits. | | | |
---
# The Limit Definition of the Derivative
## Lecture Content
[**Video: Average Rate of Change**](https://youtu.be/0lMCRhUcCtA)
[**Video: Introduction to the Derivative**](https://youtu.be/yuNhYRZREwI)
[**Video: Powers, Sums and Constant Multiples**](https://youtu.be/cfP_04TuJc8)
---
## Lecture Notes
### Limit Definition of the Derivative
The derivative of a function \( f(x) \) at a point \( x = a \) is defined as:
\[
f'(a) = \lim_{h \to 0} \frac{f(a + h) - f(a)}{h}
\]
Alternatively, using \( x \):
\[
f'(x) = \lim_{x \to a} \frac{f(x) - f(a)}{x - a}
\]
This represents the **instantaneous rate of change** or the **slope of the tangent line** to the curve at \( x = a \).
---
### Derivative Rules for Common Functions
#### Polynomials
\[
\frac{d}{dx}(x^n) = nx^{n-1}
\]
---
#### Exponential Functions
\[
\frac{d}{dx}(e^x) = e^x, \quad \frac{d}{dx}(a^x) = a^x \ln a
\]
---
#### Logarithmic Functions
\[
\frac{d}{dx}(\ln x) = \frac{1}{x}, \quad \frac{d}{dx}(\log_a x) = \frac{1}{x \ln a}
\]
---
#### Trigonometric Functions
\[
\frac{d}{dx}(\sin x) = \cos x, \quad \frac{d}{dx}(\cos x) = -\sin x
\]
\[
\frac{d}{dx}(\tan x) = \sec^2 x
\]
---
### Sum, Difference, and Constant Multiple Rules
- **Sum Rule:**
\[
\frac{d}{dx}[f(x) + g(x)] = f'(x) + g'(x)
\]
- **Difference Rule:**
\[
\frac{d}{dx}[f(x) - g(x)] = f'(x) - g'(x)
\]
- **Constant Multiple Rule:**
\[
\frac{d}{dx}[c \cdot f(x)] = c \cdot f'(x)
\]
These rules allow for simple combination and manipulation of derivative calculations.
---
### Tangent Line to a Function at a Point
To find the equation of the tangent line to \( f(x) \) at \( x = a \):
1. **Find \( f(a) \)** – the point of tangency: \( (a, f(a)) \).
2. **Compute \( f'(a) \)** – the slope of the tangent line.
3. **Use point-slope form:**
\[
y - f(a) = f'(a)(x - a)
\]
This gives the linear approximation of the function near \( x = a \).
**Example:**
Find the tangent line to \( f(x) = x^2 \) at \( x = 3 \):
- \( f(3) = 9 \)
- \( f'(x) = 2x \Rightarrow f'(3) = 6 \)
- Equation: \( y - 9 = 6(x - 3) \Rightarrow y = 6x - 9 \)
---
## Examples
### Average ROC
[**Video: Solutions **](https://www.youtube.com/watch?v=KeHgAUW8RpE)
1. The following chart shows *"living wage"* jobs in Rochester per 1000 working-age adults over a 5-year period.
| Year | 1997 | 1998 | 1999 | 2000 | 2001 |
|------|------|------|------|------|------|
| Jobs | 660 | 735 | 795 | 840 | 870 |
a. What is the average rate of change in the number of living wage jobs from **1997** to **1999**?