-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfa18.html
582 lines (555 loc) · 39 KB
/
fa18.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Stat 134, Fall '18</title>
<!-- Bootstrap -->
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700|PT+Serif|Lora" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<!-- Swiper -->
<link rel="stylesheet" href="css/swiper.min.css">
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript" async
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML">
</script>
<script src="https://use.fontawesome.com/63e7afe910.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Title -->
<div class="navbar navbar-custom">
<nav class="navbar">
<div class="container">
<div class="col-sm-3 col-xs-3" id=nav-text-left>
<div class=desktop>
<ul class="nav navbar-nav">
<li><h4><a href=index.html>Stat 134</a></h4></li>
</ul>
</div>
<div class=mobile>
<ul class="nav navbar-nav">
<li><h4><a href=index.html>134</a></h4></li>
</ul>
</div>
</div>
<div class="col-sm-9 col-xs-9" id=nav-text-right>
<ul class="nav navbar-nav navbar-right">
<li><p><a href=schedule.html>Schedule</a></p></li>
<li><p><a href=homework.html>Homework</a></p></li>
<li><p><a href=readings.html>Readings</a></p></li>
<li><p><a href=syllabus.html>Syllabus</a></p></li>
<li><p><a href=staff.html>Staff</a></p></li>
</ul>
</div>
</div>
</nav>
</div>
<header class="container">
<h1 class = "header-xs">Concepts of Probability</h1>
<h5 class = "header-xs" id=subheading>Stat 134 with Adam Lucas, Fall '18.</h5>
</header>
<br>
<br>
<hr>
<!-- Announcements -->
<section class="container">
<!--<h3>Announcements</h3>-->
<!--<h4 id=level-1>Week 15</h4>
<p id=level-2>Congratulations on making it through the semester! All that's left now is that pesky final! To help you prepare for the final, the GSIs will be having special OH throughout RRR week:</p>-->
<!-- Slider main container -->
<div class="swiper-container">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 1</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Aug 20-26</p>
<ul id="swiper-announcement"><li>Welcome to Stat 134!</li>
<li id="week-problems"><a target=_blank href=homework.html><b>Homework</b></a>: 1.1.8, 1.3.12, 1.4.6, 1.4.10, 1.5.2, 1.5.4, 1.6.6, 1.rev.16</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 2</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Aug 27 - Sept 2</p>
<ul id="swiper-announcement"><li>Reminder: the first quiz is coming up next Wednesday (9/5).</li>
<li id="week-problems"><a target=_blank href=homework.html><b>Homework (due 9/5)</b></a>: 2.1.4, 2.1.6, 2.1.8, 2.1.12, 2.2.6, 2.2.10, 2.2.14, 2.rev.24 (be careful in part b!)</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 3</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Sept 3-9</p>
<ul id="swiper-announcement"><li></li>
<li id="week-problems"><a target=_blank href=homework.html><b>Homework (due 9/12)</b></a>: 2.4.1a,d (just those two parts; show some of your calculations), 2.4.6, 2.4.8, 2.5.6, 2.5.8, 2.5.12a-e (just those five parts), 2.rev.10, 2.rev.18</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 4</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Sept 10-16</p>
<ul id="swiper-announcement"><li id="week-problems"><a target=_blank href=homework.html><b>Homework (due 9/19)</b></a>: 3.1.8, 3.1.12, 3.1.14, 3.2.4, 3.2.14, 3.2.20, 3.rev.8, 3.rev.10</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 5</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Sept 17-23</p>
<ul id="swiper-announcement"><li id="week-problems"><a target=_blank href=homework.html><b>Homework (due 9/26)</b></a>: 3.3.6, 3.3.8, 3.3.12, 3.3.16, 3.3.20, 3.6.2, 3.6.5, 3.6.6</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 6</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Sept 24-30</p>
<ul id="swiper-announcement">The midterm is next Friday! More info will be discussed in lecture and section.<li id="week-problems">
<a target=_blank href=homework.html><b>Homework (due 10/3)</b></a>: 3.4.10, 3.4.12, 3.4.14, 3.5.4, 3.5.10, 3.5.12, 3.5.17, 3.rev.2</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 7</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Oct 1-7</p>
<ul id="swiper-announcement">Midterm this Friday! Check Piazza for information and resources.<li id="week-problems">
<b>No homework will be due on 10/10.</b></li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 8</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Oct 8-14</p>
<ul id="swiper-announcement">Congrats on reaching the halfway point in the course! Midterm statistics are available on Piazza.<li id="week-problems">
<a target=_blank href=homework.html><b>Homework (due 10/17)</b></a>: 4.1.4, 4.1.7, 4.1.8, 4.1.12, 4.2.4, 4.2.8, 4.rev.2, 4.rev.14</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 9</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Oct 15-21</p>
<ul id="swiper-announcement">Quiz 4 is this week, and Quiz 5 will be next week! See the Syllabus for exact quiz dates.<li id="week-problems">
<a target=_blank href=homework.html><b>Homework (due 10/24)</b></a>: See the <a href=homework.html>Homework</a> page for assigned problems.</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 10</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Oct 22-28</p>
<ul id="swiper-announcement">Quiz 5 is this week, and Quiz 6 is next week.<li id="week-problems">
<a target=_blank href=homework.html><b>Homework (due 10/31)</b></a>: 4.6.2, 4.rev.16, 5.1.4, 5.1.6, 5.1.9, 5.2.6, 5.2.8, 5.2.12, 5.2.14, 5.2.16</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 11</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Oct 29 - Nov 4</p>
<ul id="swiper-announcement">Quiz next week has been cancelled! Also, elections are next Tuesday; be sure to vote if you are able!<li id="week-problems">
<a target=_blank href=homework.html><b>Homework (due 11/7)</b></a>: 5.3.4, 5.3.8, 5.3.12, 5.4.10, 5.4.13. 5.rev.12, 5.rev.22, 5.rev.24</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 12</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Nov 5-11</p>
<ul id="swiper-announcement"><li id="week-problems">
<a target=_blank href=homework.html><b>Homework (due 11/14)</b></a>: 6.1.2, 6.1.8, 6.2.4, 6.2.10, 6.2.12, 6.2.16, 6.3.2, 6.3.4</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 13</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Nov 12-18</p>
<ul id="swiper-announcement"><li id="week-problems">
<a target=_blank href=homework.html><b>Homework (due 11/30)</b></a>: 6.3.8, 6.3.10, 6.3.12, 6.4.8, 6.4.10, 6.4.12, 6.4.22, 6.rev.21</li>
</ul>
</div>
<div class="swiper-slide">
<h4 id="swiper-week-num">Week 15</h4>
<h3 id="swiper-slide-title">Stat 134</h3>
<p id="swiper-date">Nov 26 - Dec 2</p>
<ul id="swiper-announcement">We are near the end of the course! Please check Piazza for announcements related to our schedule for RRR week.<li id="week-problems">
<a target=_blank href=homework.html>Recommended Problems</a>: 6.5.1, 6.5.2, 6.5.3, 6.5.4, 6.5.5, 6.5.6, 6.5.8, 6.5.12</li>
</ul>
</div>
</div>
<!-- If we need pagination -->
<div class="swiper-pagination"></div>
<!-- If we need navigation buttons -->
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
<!-- If we need scrollbar -->
<div class="swiper-scrollbar"></div>
</div>
<!--<div id=week-problems>
<ul id=level-2>This week's problems (due Wed, 19/4): <b>(Will not be tested on the quiz)</b>
<li><b>Homework</b>: 6.1.2, 6.1.8, 6.2.4 (for part (b), I recommend looking at page 487 where you will find the variance of a useful uniform variable), 6.2.10, 6.2.12, 6.2.16, 6.3.2, 6.3.4</li>
<li><b>Minimal Practice</b>: 6.1.1, 6.1.3, 6.2.1, 6.2.3, 6.2.11, 6.3.1, 6.3.5</li>
<li><b>Highly Recommended</b>: 6.1.5, 6.1.7, 6.1.8, 6.2.7, 6.2.18 (done in class), 6.3.3, 6.3.7</li>
</ul>
<br>
<ul id=level-2><b>Problems Recommended for the Quiz:</b><br> Week 12 Problems:
<li><b>Homework</b>: 5.3.4, 5.3.8, 5.3.12, 5.4.10 (the easiest way is to use the c.d.f.), 5.4.13. 5.rev.12, 5.rev.22, 5.rev.24 (assume d < s; note that parts b and c are on the next page)</li>
<li><b>Minimal Practice</b>: 5.3.1, 5.3.3, 5.3.7 (turn page for more parts), 5.3.9, 5.3.11, 5.4.1, 5.4.3, 5.4.5, 5.rev.5</li>
<li><b>Highly Recommended</b>: 5.3.6 (it is helpful to draw figures as in 5.3.1), 5.4.4, 5.rev.2, 5.rev.16</li>
<li></li>
</ul>
<ul id=level-2>Week 11 Problems:
<li><b>Homework</b>: 4.6.2, 4.rev.16, 5.1.4, 5.1.6, 5.1.9, 5.2.6, 5.2.8, 5.2.12, 5.2.14, 5.2.16</li>
<li><b>Minimal Practice</b>: 4.6.1, 4.6.5a, 4.rev.5, 4.rev.11, 5.1.1, 5.1.7, 5.2.1, 5.2.3, 5.2.5, 5.2.11</li>
<li><b>Highly Recommended</b>: 4.6.3abcd, 4.6.5a-b, 5.1.2, 5.1.3, 5.2.4, 5.2.9, 5.2.10, 5.2.13, 5.rev.2</li>
<li></li>
</ul>
</div> --> </div> </div>
</section>
<hr>
<!-- Syllabus -->
<section class="container">
<div id=syllabus_short>
<div class=row id=syllabus_line>
<b class="col-sm-2">Instructor: </b>
<p class="col-sm-10">Adam Lucas</p>
</div>
<div class=row id=syllabus_line>
<b class="col-sm-2">Lectures: </b>
<ul class="col-sm-10">
<li><p>MWF 9:00 am - 10:00 am, 2050 Valley Life Sciences</p></li>
</ul>
</div>
</div>
</section>
<!-- Add gaps at the end of the line -->
<!-- Search feature -->
<!--
<hr>
<section class="container">
<h3 id="search-heading">Search For Anything</h3>
<div id="search-box">
<input id="text-box" type="text" class="form-control" placeholder="Type your query here">
</div>
</section>-->
<!-- Search Results -->
<!--
<section id="results-table" class="container">
<table class="table table-hover">
<thead id=table_head>
<tr>
<th>Name</th>
<th>Type</th>
<th>Tags</th>
</tr>
</thead>
<tbody id ="table-data">
</tbody>
</table>
</section>
-->
<script src="js/search.js"></script>
<hr>
<!-- Calendar -->
<section class="container">
<h3>Calendar</h3>
<table class="table table-striped table-hover">
<thead>
<tr id=table_titles>
<th>Week</th>
<th>Topics</th>
<th>Lecture Notes</th>
<th>Section/Handouts</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" id=odd_week>1</th>
<td id=middle_column>1.1 - 1.6</td>
<td id=middle_column>Wed, 8/22 (<a href="assets/old_lectures/lec_01_22_08.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=GmWK8TvKWWk" target="_blank">Video</a>)
<br>Fri, 8/24 (<a href="assets/old_lectures/lec_02_24_08.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=qitch0_TvkU" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_01_22_08.pdf" target="_blank">Section 1</a></td>
</tr>
<tr>
<th scope="row" id=even_week>2</th>
<td>1.6, 2.1 - 2.2</td>
<td>Mon, 8/27 (<a href="assets/old_lectures/lec_03_27_08.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=jVHzaxAtzWA" target="_blank">Video</a>)
<br>Wed, 8/29 (<a href="assets/old_lectures/lec_04_29_08.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=AYwKNERmHDU" target="_blank">Video</a>)
<br>Fri, 8/31 (<a href="assets/old_lectures/lec_05_31_08.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=xChs0jgcMD4" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_02_27_08.pdf" target="_blank">Section 2</a>
<br><a href="assets/old_handouts/section_03_29_08.pdf" target="_blank">Section 3</a> (<a href="assets/old_handouts/section_03_29_08_q3.pdf" target="_blank">Q3 Solution</a>)</td>
</tr>
<tr>
<th scope="row" id=odd_week>3</th>
<td>2.4 - 2.5</td>
<td>Wed, 9/5 (<a href="assets/old_lectures/lec_06_05_09.pdf" target="_blank">Notes</a>) (<a href="https://www.youtube.com/watch?v=iAmoMTz1DjQ" target="_blank">Video</a>)
<br>Fri, 9/7 (<a href="assets/old_lectures/lec_07_07_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=9bZg1ZFzXM0" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_04_05_09.pdf" target="_blank">Section 4</a> + <b>Quiz 1</b></td>
</tr>
<th scope="row" id=even_week>4</th>
<td>2.5, 3.1 - 3.2</td>
<td>Mon, 9/10 (<a href="assets/old_lectures/lec_08_10_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=WzJtU1vfpwM" target="_blank">Video</a>)
<br>Wed, 9/12 (<a href="assets/old_lectures/lec_09_12_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=Tv88bURK7UM" target="_blank">Video</a>)
<br>Fri, 9/14 (<a href="assets/old_lectures/lec_10_14_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=iGBeIcUB5tA" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_05_10_09.pdf" target="_blank">Section 5</a>
<br><a href="assets/old_handouts/section_06_12_09.pdf" target="_blank">Section 6</a></td>
</tr>
<tr>
<th scope="row" id=odd_week>5</th>
<td>3.2, 3.3, 3.6</td>
<td>Mon, 9/17 (<a href="assets/old_lectures/lec_11_17_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=tY_KF3r9XLc" target="_blank">Video</a>)
<br>Wed, 9/19 (<a href="assets/old_lectures/lec_12_19_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=xw-6A2QEbvU" target="_blank">Video</a>)
<br>Fri, 9/21 (<a href="assets/old_lectures/lec_13_21_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=xNESpRW6gKk" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_07_17_09.pdf" target="_blank">Section 7</a> + <b>Quiz 2</b>
<br><a href="assets/old_handouts/section_08_19_09.pdf" target="_blank">Section 8</a></td>
</tr>
<tr>
<th scope="row" id=even_week>6</th>
<td>3.6, 3.4, 3.5</td>
<td>Mon, 9/24 (<a href="assets/old_lectures/lec_14_24_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=2s90LJM6bMI" target="_blank">Video</a>)
<br>Wed, 9/26 (<a href="assets/old_lectures/lec_15_26_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=jKVN7Q9BkV4" target="_blank">Video</a>)
<br>Fri, 9/28 (<a href="assets/old_lectures/lec_16_28_09.pdf" target="_blank">Notes</a>) (<a href="http://www.youtube.com/watch?v=llHAJ52YHfY" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_09_24_09.pdf" target="_blank">Section 9</a>
<br><a href="assets/old_handouts/section_10_26_09.pdf" target="_blank">Section 10</a> + <b>Quiz 3</b></td>
</tr>
<tr>
<th scope="row" id=odd_week>7</th>
<td>Review</td>
<td>Mon, 10/1 (<a href="assets/old_lectures/lec_17_01_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/ZXC2jfjDsy0" target="_blank">Video</a>)
<br>Wed, 10/3 (<a href="assets/old_lectures/lec_18_03_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/7D_xzfqCPaE" target="_blank">Video</a>)
<br><b>Midterm</b> (Fri, 10/5)</td>
<td id=table_right><a href="assets/old_handouts/section_11_01_10.pdf" target="_blank">Section 11</a>
<br><b>Review Materials:</b>
<br><a href="assets/old_handouts/midterm_conceptual_review.pdf" target="_blank">Conceptual Review</a>
<br><a href="assets/old_handouts/midterm_review.pdf" target="_blank">Sample Midterm Questions</a> (<a href="assets/old_handouts/midterm_review_solutions.pdf" target="_blank">Solutions</a>)
<br><a href="assets/old_handouts/spring_2016.pdf" target="_blank">Spring 2016 Midterm</a></td>
</tr>
<tr>
<th scope="row" id=even_week>8</th>
<td>4.1 - 4.2</td>
<td>Mon, 10/8 (<a href="assets/old_lectures/lec_20_08_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/5FFXcSF1cbE" target="_blank">Video</a>)
<br>Wed, 10/10 (<a href="assets/old_lectures/lec_21_10_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/9tcR-LiHy-E" target="_blank">Video</a>)
<br>Fri, 10/12 (<a href="assets/old_lectures/lec_22_12_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/QGcyPX587W0" target="_blank">Video</a>)</td>
<td id=table_right>Mon: No Section
<br><a href="assets/old_handouts/section_12_10_10.pdf" target="_blank">Section 12</a></td>
</tr>
<tr>
<th scope="row" id=odd_week>9</th>
<td>4.4 - 4.5</td>
<td>Mon, 10/15 (<a href="assets/old_lectures/lec_23_15_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/dyVejkKDTro" target="_blank">Video</a>)
<br>Wed, 10/17 (<a href="assets/old_lectures/lec_24_17_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/5TsO4eeob-Y" target="_blank">Video</a>)
<br>Fri, 10/19 (<a href="assets/old_lectures/lec_25_19_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/gr_Km9-8aVk" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_13_15_10.pdf" target="_blank">Section 13</a>
<br><a href="assets/old_handouts/section_14_17_10.pdf" target="_blank">Section 14</a> + <b>Quiz 4</b></td>
</tr>
<tr>
<th scope="row" id=even_week>10</th>
<td>4.6, 5.1 - 5.2</td>
<td>Mon, 10/22 (<a href="assets/old_lectures/lec_26_22_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/HTuYO_aYwgU" target="_blank">Video</a>)
<br>Wed, 10/24 (<a href="assets/old_lectures/lec_27_24_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/YfoWLjs1_Po" target="_blank">Video</a>)
<br>Fri, 10/26 (<a href="assets/old_lectures/lec_28_26_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/-5AUXLoUVos" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_15_22_10.pdf" target="_blank">Section 15</a>
<br><a href="assets/old_handouts/section_16_24_10.pdf" target="_blank">Section 16</a> + <b>Quiz 5</b></td>
</tr>
<tr>
<th scope="row" id=odd_week>11</th>
<td>5.3 - 5.4</td>
<td>Mon, 10/29 (<a href="assets/old_lectures/lec_29_29_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/W8OxVv7_a78" target="_blank">Video</a>)
<br>Wed, 10/31 (<a href="assets/old_lectures/lec_30_31_10.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/USWX0TRMbH0" target="_blank">Video</a>)
<br>Fri, 11/2 (<a href="assets/old_lectures/lec_31_02_11.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/WRH0-3DfNdk" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_17_29_10.pdf" target="_blank">Section 17</a>
<br><a href="assets/old_handouts/section_18_31_10.pdf" target="_blank">Section 18</a> + <b>Quiz 6</b></td>
</tr>
<tr>
<th scope="row" id=even_week>12</th>
<td>6.1 - 6.3</td>
<td>Mon, 11/5 (<a href="assets/old_lectures/lec_32_05_11.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/NFcyeWymOXY" target="_blank">Video</a>)
<br>Wed, 11/7 (<a href="assets/old_lectures/lec_33_07_11.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/OhrlK73131c" target="_blank">Video</a>)
<br>Fri, 11/9 (<a href="assets/old_lectures/lec_34_09_11.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/MFLymr2gB_U " target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_19_05_11.pdf" target="_blank">Section 19</a> (<a href="assets/old_handouts/section_19_05_11_q3_solution.pdf" target="_blank">Q3 Solution</a>)
<br><a href="assets/old_handouts/section_20_07_11.pdf" target="_blank">Section 20</a> (<a href="assets/old_handouts/section_20_07_11_q2_solution.pdf" target="_blank">Q2 Solution</a>)</td>
</tr>
<tr>
<th scope="row" id=odd_week>13</th>
<td>6.3 - 6.4</td>
<td>(Veteran's Day: No Lecture Mon)
<br>Wed, 11/14 (<a href="assets/old_lectures/lec_35_14_11.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/DWTX86Hkgw4" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_21_14_11.pdf" target="_blank">Section 21</a></td>
</tr>
<tr>
<th scope="row" id=even_week>14</th>
<td>---</td>
<td>No Classes</td>
<td id=table_right></td>
</tr>
<tr>
<th scope="row" id=odd_week>15</th>
<td>6.4 - 6.5</td>
<td>Mon, 11/26 (<a href="assets/old_lectures/lec_36_26_11.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/Mi7NCybI5K8" target="_blank">Video</a>)
<br>Wed, 11/28 (<a href="assets/old_lectures/lec_37_28_11.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/FVaMmxUsHGg" target="_blank">Video</a>)
<br>Fri, 11/30 (<a href="assets/old_lectures/lec_38_30_11.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/fI2Tm2Tzukg" target="_blank">Video</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_22_26_11.pdf" target="_blank">Section 22</a>
<br><a href="assets/old_handouts/section_23_28_11.pdf" target="_blank">Section 23</a> <a href="assets/old_handouts/section_23_28_11_q2_solution.pdf" target="_blank">(Q2 Solution)</a> + <b>Quiz 7</b>
</td>
</tr>
<tr>
<th scope="row" id=even_week>16 (RRR)</th>
<td>Review</td>
<td>Mon, 12/3 (<a href="assets/old_lectures/lec_39_03_12.pdf" target="_blank">Notes</a>) (<a href="https://youtu.be/0pGdaeGQgG4" target="_blank">Video</a>)
<br>Wed, 12/5 (<a href="assets/old_lectures/lec_40_05_12.pdf" target="_blank">Notes</a>)
<br>Fri, 12/7 (<a href="assets/old_lectures/lec_41_07_12.pdf" target="_blank">Notes</a>)</td>
<td id=table_right><a href="assets/old_handouts/section_24_03_12.pdf" target="_blank">Section 24</a>
<br><b>Review Materials:</b>
<br><a href="assets/old_handouts/final_spring_2018.pdf" target="_blank">Spring 2018 Final</a> (<a href="assets/old_handouts/final_spring_2018_solutions.pdf" target="_blank">Solutions</a>)
<br><a href="assets/old_handouts/final_review_sheet.pdf" target="_blank">Final Review Sheet</a> (<a href="assets/old_handouts/final_review_sheet_solutions.pdf" target="_blank">Solutions</a>)
<br><a href="assets/old_handouts/densities_review.pdf" target="_blank">Densities, CDFs, Order Statistics</a>
<br><a href="assets/old_handouts/joint_distributions_review.pdf" target="_blank">Joint Distributions</a> (<a href="assets/old_handouts/joint_distributions_review_solutions.pdf" target="_blank">Solutions</a>)
<br><a href="assets/old_handouts/cov_operations_review.pdf" target="_blank">Change of Variable/Operations</a> (<a href="assets/old_handouts/cov_operations_review_solutions.pdf" target="_blank">Solutions</a>)
<br><a href="assets/old_handouts/conditional_review.pdf" target="_blank">Conditional Distributions/Expectations</a> (<a href="assets/old_handouts/conditional_review_solutions.pdf" target="_blank">Solutions</a>)
<br><a href="assets/old_handouts/indicators_covariance_review.pdf" target="_blank">Indicators/Covariance</a> (<a href="assets/old_handouts/indicators_covariance_review_solutions.pdf" target="_blank">Solutions</a>)</td>
</tr>
<tr>
<th scope="row" id=odd_week>Finals Week</th>
<td></td>
<td>Final: Thurs, 7-10pm</td>
<td id=table_right></td>
</tr>
<!-- <tr>
<th scope="row" id=odd_week>9</th>
<td>4.4, 4.5</td>
<td>Mon, 10/16
<br>Wed, 10/18</td>
<td id=table_right><a href="assets/handouts/section_11_16:10.pdf" target="_blank">Section 11</a><br>
<a href="assets/handouts/section_12_18:10.pdf" target="_blank">Section 12</a></td>
</tr>
<tr>
<th scope="row" id=even_week>10</th>
<td>4.6, 5.1, 5.2</td>
<td>Mon, 10/23
<br>Wed, 10/25: <b>Quiz 3</b></td>
<td id=table_right><a href="assets/handouts/section_13_23:10.pdf" target="_blank">Section 13</a></td>
</tr>
<tr>
<th scope="row" id=odd_week>11</th>
<td>5.2, 5.3</td>
<td>Mon, 10/30
<br>Wed, 11/1</td>
<td id=table_right><a href="assets/handouts/section_14_30_10.pdf" target="_blank">Section 14</a><br>
<a href="assets/handouts/section_15_1:11.pdf" target="_blank">Section 15</a></td>
</tr>
<tr>
<th scope="row" id=even_week>12</th>
<td>6.1, 6.2</td>
<td>Mon, 11/6
<br>Wed, 11/8
<br>Fri, 11/10: Veteran's Day</td>
<td id=table_right><a href="assets/handouts/section_16_6_11.pdf" target="_blank">Section 16</a><br>
<a href="assets/handouts/section_17_8:11.pdf" target="_blank">Section 17</a></td>
</tr>
<tr>
<th scope="row" id=odd_week>13</th>
<td>6.3, 6.4</td>
<td>Mon, 11/13
<br>Wed, 11/15: <b>Quiz 4</b></td>
<td id=table_right><a href="assets/handouts/section_18_13_11.pdf" target="_blank">Section 18</a></td>
</tr>
<tr>
<th scope="row" id=even_week>14</th>
<td>6.4, 6.5</td>
<td>Mon, 11/20
<br>Wed, 11/22: Thanksgiving</td>
<td id=table_right><a href="assets/handouts/section_19_20:11.pdf" target="_blank">Section 19</a></td>
</tr>
<tr>
<th scope="row" id=odd_week>15</th>
<td>6.5, 5.4
</td>
<td>Mon, 11/27
<br>Wed, 11/29</td>
<td id=table_right><a href="assets/handouts/section_20_27-11.pdf" target="_blank">Section 20</a>
<br><a href="assets/handouts/section_21_29:11.pdf" target="_blank">Section 21</a></td>
</tr>
<tr>
<th scope="row" id=odd_week>16</th>
<td>RRR Week: <b>Review</b></td>
<td>Mon, 12/4
<br>Wed, 12/11</td>
<td id=table_right><a href="assets/handouts/section_22_4:12.pdf" target="_blank">Section 22</a>
<br>
<br>
<b>Review Session Worksheets:</b><br>
<a href="assets/handouts/indicators_review.pdf" target="_blank">Indicators</a>
<br><a href="assets/handouts/densities.pdf" target="_blank">Densities/CDF/Order Statistics</a>
<br><a href="assets/handouts/Poisson%20Process.pdf" target="_blank">Poisson Processes</a>
<br><a href="assets/handouts/CoV.pdf" target="_blank">Change of Variable</a>
<br><a href="assets/handouts/joint%20distributions.pdf" target="_blank">Joint Distributions</a>
<br><a href="assets/handouts/Conditional_Prob_Exp.pdf" target="_blank">Conditional Probability/ Expectation</a>
<br><a href="assets/handouts/covariance.pdf" target="_blank">Covariance</a>
<br><a href="assets/handouts/BivariateNormal_review.pdf" target="_blank">Bivariate Normal</a>
</td>
</tr>
<tr>
<th scope="row" id=even_week>17</th>
<td>Wed 3 - 6 pm: <b>Final</b></td>
<td></td>
<td id=table_right></td>
</tr> -->
</tbody>
</table>
</section>
<!-- <section class="container">
<h3>Resources</h3>
<h4 id=level-1>Support</h4>
<p id=level-2>The Student Learning Center (SLC) offers extensive support for Stat 134. Click <a href=http://slc.berkeley.edu/statistics-134 target="_blank">here</a> to learn more.</p>
<h4 id=level-1>A Note on Using Solution Manuals</h4>
<div>
<div>
<p id=level-2>TL;DR Don't. <a href="javascript:void(0);" id="toggle_tldr">Why?</a></p>
</div>
<div id="tldr_long" style="display:none">
<p id=level-2>There is a big distinction between understanding a solution and being able to produce it yourself. When you read a solution presented in a solution manual, you will undoutably understand it; however, this does not mean that you will be able to produce a similar solution yourself at another time. If you don't believe me, just <a href=https://www.quora.com/What-did-Richard-Feynman-mean-when-he-said-What-I-cannot-create-I-do-not-understand target="_blank">ask Richard Feynman</a>. Solution manuals often give the illusion of proficiency; more often than not, this illusion is cruelly shattered by exams.</p>
<p id=level-2>This trap is very easy to fall into and is indeed one that many a good student (myself included) have fallen prey to. In a course like Stat 134 where the problems you face are especially tricky, a large part of the learning process is struggling through problems and confronting the bleak sense of helplessness you might feel when faced with a problem unlike anything you've seen before. It is hard to find many things more rewarding in life than that "Eureka" moment, that arises after hours of hard, fruitless labour, when what seemed so opaque merely seconds prior becomes so suddenly and entirely clear. Don't deprive yourself of the beauty of such moments.</p>
<p id=level-2>Do yourself a favour and don't use solution manuals, even if to just "check your work". If you need help with the homework assignments, please reach out to the GSIs or make use of any one of the SLC's many services.</p>
</div>
</div>
</section> -->
<hr>
<footer section="container">
<row class="col-sm-12">
<ul class="col-sm-12">
<li>Site originally designed and developed by <a href="https://www.stat.berkeley.edu/~ani/.com" target="_blank">Ani Adhikari</a> and <a href="http://andypalan.com" target="_blank">Andy Palan</a>. </li>
<br>
</ul>
</row>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- Swiper -->
<script src="js/swiper.min.js"></script>
<!-- Initializing Swiper -->
<script>
var mySwiper = new Swiper ('.swiper-container', {
// If we need pagination
pagination: '.swiper-pagination',
paginationClickable: true,
// Navigation arrows
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
// And if we need scrollbar
scrollbar: '.swiper-scrollbar',
// Default Slide i.e. Week Number
initialSlide: 13
})
</script>
</section>
</body>
</html>