-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbstractAlgebraFall2024.html
935 lines (725 loc) · 42.3 KB
/
AbstractAlgebraFall2024.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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<style>
body {
background-color: #eff5f5
}
</style>
<head>
<title>Abstract Algebra</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="bootstrap.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:800,400' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="non-bs.css">
<link rel="icon" type="image/png" href="favicon.ico" sizes=16x16>
<meta name="theme-color" content="#222222">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#222222">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#222222">
</head>
<body>
<div id="navigation">
<table>
<tr>
<td><big><a href="index.html">Home</a></big></td>
<td><big><a href="research.html">Research and Interests</a></big></td>
<td><big><a href="teaching.html">Teaching</a></big></td>
<td><big><a href="3MinuteThesis.html">3 Minute Thesis</a></big></td>
<td><big><a href="CV.pdf">CV</a></big></td>
</tr>
</table>
<div class="hr"> <hr /> </div>
</div> <! End of navigation div -->
<center>
<html>
<head>
<title>Intro to Abstract Algebra, Math 470, Fall 2024</title>
</head>
<body style="background-color: #FFFFFF;" alink="#ff0000" link="#000000" vlink="#000000">
<center><h1>
Math 470: Intro to Abstract Algebra<br>
Fall 2024
</h1>
</center>
<center>
<h2>General Information</h2></center>
<table align="center" border="2" cellpadding="4" cellspacing="2" width="70%">
<tbody>
<!--<tr>             Table of links:</tr>-->
<tr bgcolor="#ACB6F8">
<th><a href="#classes">Classes</a> </th>
<th><a href="#instructor">Instructor</a> </th>
<th><a href="#textbk">Text & Prerequisites</a> </th>
<th><a href="#goals">Goals and Official Course Description</a></th>
<th><a href="#content">Course Content</a></th>
</tr>
<tr bgcolor="#8594F7">
<th><a href="#dates">Important Dates</a></th>
<th><a href="#grades">Grades</a></th>
<th><a href="#hw">Homework</a> </th>
<th><a href="#exams">Quizzes and Final</a> </th>
<th><a href="#outcomes">Student Learning Outcomes</a></th>
</tr>
<tr bgcolor="#5F73F9">
<th><a href="#synchronicity">Synchronicity and Late Work</a></th>
<th><a href="#statement">Statement of Expectations</a> </th>
<th><a href="#integrity">Academic Integrity</a> </th>
<th><a href="#Support">Support From Me</a></th>
<th><a href="#kids">Policies on Children in Class</a></th>
</tr>
<tr bgcolor="#4AD1C0">
<th><a href="#credit"><font color="white">Expanded Credit Hour Statement</font></a></th>
<th><a href="#writing"><font color="white">The Writing Center</font></a></th>
<th><a href="#accessibility"><font color="white">Accessibility Issues</font></a></th>
<th><a href="#cougarcare"><font color="white">Cougar Care Network</font></a></th>
<th><a href="#reporting"><font color="white">Mandated Reporting & Resources</font></a> </th>
</tr>
</tbody>
</table>
<div style="width: 80%">
This page is based on a template from David Gross and includes content from Rebecca Lush and Tumay Tunur.
<p>
<table bgcolor="#ACB6F8" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="classes"></a>Classes</th>
</tr>
</tbody>
</table>
</p>
<p>
<ul>
<li> <b>Class: Tuesday and Thursday. 4:00-5:15 in Markstein 310</b>
<br />
<li>Class meetings will have elements of lecture, but also elements of discussion and problem solving sessions.
Be prepared to share and discuss mathematics with others.
<br />
<li><b>If you are feeling a bit under the weather, please wear a mask. If you are very sick, do not come to class.
You will not be penalized for taking care of yourself and stopping the spread of disease.</b></li>
<br />
<li> <b><a href="AbstractAlgebraCourseScheduleFall2024.pdf" target="_blank"><font color="blue">Course Schedule</font></a> </b>
<br/>
<br />
<li><b>Administrative Drop: </b> I will be taking attendance
for the first week of class. If you do not attend the first week of classes and you do not email me to let me know
why you will be missing the first week of class, then you will be
<a href="https://www.csusm.edu/enroll/services/administrative_drop.html" target="_blank">
<font color="blue">administratively dropped</font></a>. </li>
</ul>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#ACB6F8" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="instructor"></a> Instructor</th>
</tr>
</tbody>
</table>
</p>
<ul>
<li><b>Instructor:</b> <a href="https://www.hansonsmath.info/" target="_blank"><font color="blue">Hanson Smith</font></a>
<li><b>Office:</b> Administrative Building 6134
<br />
<li><b>E-mail:</b> <a href="mailto:[email protected]"><font color="blue">[email protected]</font></a>
<li><b>Office Hours:</b> Tuesday 10:00-12:00 either in Office or in Admin 6242 (the Math Conference Room), Wednesday 11:00-12:00 on
<a href="https://csusm.zoom.us/j/81045879642" target="_blank"><font color="blue">Zoom (Meeting ID: 810 4587 9642)</font></a>, and by appointment. </br>
</br>
<li><b>Delivery:</b> We will be using
<a href="https://csusm.instructure.com/courses/35452" target="_blank"><font color="blue">Canvas</font></a>
as a delivery system for some aspects of this class.
In particular, the class notes, homework assessments, worksheets, and various other materials will be on Canvas.
Assignments will be turned in on <a href="https://www.gradescope.com/courses/834808" target="_blank"><font color="blue">Gradescope</font></a>.
However, email will be the primary mode of communication.
<br />
<br />
<li><b>GA:</b> Abigail Dan (<a href="mailto:[email protected]"><font color="blue">[email protected]</font></a>) will be our graduate assistant this semester.
We will be grading the assignments together, and Abigail also may be helping facilitate our in-class work.
<li><b>GA Office Hours:</b> Monday 6:00 pm on <a href="https://csusm.zoom.us/j/84663083881?pwd=QjZMVmcvTjErTGFobzVPQzdObkhPdz09" target="_blank"><font color="blue">Zoom</font></a>
(Meeting ID: 846 6308 3881, Passcode: 564178).
</ul>
<p>
<table bgcolor="#ACB6F8" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="textbk"></a>Text & Prerequisites</th>
</tr>
</tbody>
</table>
</p>
<p>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr align="left">
<td> <img id="textbook" src="AbstractAlgBook.jpg" alt="Linear Alegbra And Its Applications" width="190">
</td>
<td>
<id="verbiage">
<!-- <big> -->
Our course text is
<a href="https://www.amazon.com/Contemporary-Abstract-Algebra-Joseph-Gallian/dp/1305657969" ><font color="blue"><i>
Contemporary Abstract Algebra 9th Edition</i></font></a>
by Joseph A. Gallian. <br>
Please let me know if you are having trouble finding a copy. </br>
<a href="https://www.d.umn.edu/~jgallian/" ><font color="blue">
The author's website has some useful additional resources as well.</font></a><br>
Reading will be a large portion of this course.
<br>
I encourage you to obtain this
text in a format which works well for you.
<!-- </big> -->
</td>
</tr>
</table>
<br />
<a href="https://www.csusm.edu/academicadvising/majorminor/worksheets/math/math.pdf" target="_blank">
<font color="blue"><b>Prerequisites:</b></font></a> <a href="https://catalog.csusm.edu/preview_course_nopop.php?catoid=9&coid=29181" target="_blank">
<font color="blue"><b>Math 378: Number Systems</b></font></a>.
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#ACB6F8" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="goals"></a> Official Course Description and Goals</th>
</tr>
</tbody>
</table>
</p>
<p><b>Official Course Description:</b> An introduction to the theory of groups, rings, and fields, with abstract ideas reinforced by
concrete and important examples, such as permutation groups, polynomial rings, and finite fields.
The power of the axiomatic systems introduced will be illustrated via several applications to concrete and classical problems.</p>
<p>
<b>Goals:</b> The overarching goal for the semester is to gain a working knowledge of and fluency with groups and rings,
the fundamental objects of abstract algebra.
We will work to understand not only the definitions, but the parts, pieces, and maps that help us
classify and work with these objects. <br>
<br>
One practical goal that will underpin the course is
deepening our familiarity with and maturity in mathematics. This includes developing the ability to communicate mathematics and reason mathematically.
We will spend our time reading, understanding, responding to, and creating mathematical arguments.
You are probably familiar with having this sort of mathematical dialogue with an instructor, but a goal of this course is
to open and develop this kind of dialogue with your peers. To this end, we will create a welcoming and supportive classroom
community that gives us space to make mistakes and learn. <br>
<li> Please consider how what we are doing in this course relates to the goals above and how the goals relate to the
<a href="#outcomes"target="_blank"><font color="blue">outcomes</font></a> listed below.
I have thought extensively about how each level of this schaffolding supports the next, but I would love to hear about ways
the course and our ability to meet our goals can be improved.
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#ACB6F8" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="content"></a>Course Content</th>
</tr>
</tbody>
</table>
</p>
<p>
Our primary reference will be
<a href="https://www.amazon.com/Contemporary-Abstract-Algebra-Joseph-Gallian/dp/1305657969" ><font color="blue"><i>
Contemporary Abstract Algebra 9th Edition</i></font></a> by Joseph A. Gallian.
<br></br>
A very loose and almost sure to be augmented list of the chapters we will attempt to cover
<table width="60%">
<tbody>
<tr><td>
<b>Chapter</b></td><td><b>Chapter Title</b></td><td>
<tr><td align=""center">
0</td><td><align="left">Preliminaries</align></td><td>
<tr><td align=""center">
1</td><td><align="left">Intro to Groups</align>
<tr><td align=""center">
2</td><td><align="left">Groups </align></td><td>
<tr><td align=""center">
3</td><td><align="left">Finite Groups; Subgroups </align></td><td>
<tr><td align=""center">
4</td><td><align="left">Cyclic Groups</align></td><td>
<tr><td align=""center">
5</td><td><align="left">Permutation Groups </align></td><td>
<tr><td align=""center">
6</td><td><align="left">Isomorphisms</align></td><td>
<tr><td align=""center">
7</td><td><align="left">Cosets and Lagrange’s Theorem</align></td><td>
<tr><td align=""center">
8</td><td><align="left">External Direct Products</align></td><td>
<tr><td align=""center">
9</td><td><align="left">Normal Subgroups and Factor Groups (Quotient Groups)</align></td>
<td>
<tr><td align=""center">
10</td><td><align="left">Group Homomorphisms</align></td><td>
<tr><td align=""center">
12</td><td><align="left">Introduction to Rings </align></td><td>
<tr><td align=""center">
13</td><td><align="left">Integral Domains</align></td><td>
<tr><td align=""center">
14</td><td><align="left">Ideals and Factor Rings (Quotient Rings)</align></td><td>
<tr><td align=""center">
15</td><td><align="left">Ring Homomorphisms</align></td><td>
<tr><td align=""center">
16</td><td><align="left">Polynomial Rings</align></td><td>
<tr><td align=""center">
17</td><td><align="left">Factorization of Polynomials</align></td><td>
<tr><td align=""center">
18</td><td><align="left">Divisibility in Integral Domains</align></td><td>
</tbody>
</table>
<br />
<li> More details can be found in the <b><a href="AbstractAlgebraCourseScheduleFall2024.pdf" target="_blank"><font color="blue">Course Schedule</font></a>.</b>
Note that things will almost surely change and get shifted around as the semester progresses. I'll keep you abreast of any changes via
in-class communication, email, and by updating the course schedule.
<br />
<br />
<li> There are numerous great resources online. Feel free to use external resources to help with your studying.
Please share if you find anything particularly helpful. <!-- Here are a few I found. Let me know if you find others that you think are
helpful. <br />
<li> <a href="http://www.numbertheory.org/ntw/lecture_notes.html">A very extensive list of number theory lecture notes</a> <br />
<li> <a href="https://ocw.mit.edu/courses/mathematics/18-781-theory-of-numbers-spring-2012/">MIT OpenCourse content</a> <br />
<li><a href="https://www.youtube.com/watch?v=19SW3P_PRHQ">A random lecture that claims to cover the whole course and more in two and a half hours.</a> <br />-->
<br />
<br />
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#8594F7" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="dates"></a>Important Dates</th>
</tr>
</tbody>
</table>
</p>
<p>
<!-- table of dates <font size="+1">-->
<p></p>
<table align="center" border="2" cellpadding="4" cellspacing="2" width="80%">
<tbody>
<tr><th>Tuesday, August 27</th> <th>First Day of Class</th></tr>
<tr><th>Tuesday, September 24</th><th>In-Class Quiz 1</th></tr>
<tr><th>Tuesday, October 22</th><th>In-Class Quiz 2</th></tr>
<!--<tr><th>Tuesday & Thursday, April 2 & 4</font></th> <th>
<a href="https://digitalcommons.ursinus.edu/triumphs_abstract/3/" target="_blank"><font color="blue">Primary Source Project</font></a></th></tr>-->
<tr><th>Tuesday, November 19</th><th>In-Class Quiz 3</th></tr>
<tr><th>Thursday, December 5 </th> <th>Last Day of Class</th></tr>
<tr><th>Thursday, December 12 </th> <th> Final Exam 4:00-6:00 pm </th></tr>
</tbody>
</table>
<br />
<li> More details can be found in the <b><a href="AbstractAlgebraCourseScheduleFall2024.pdf" target="_blank"><font color="blue">Course Schedule</font></a>.</b>
Note that things will almost surely change and get shifted around as the semester progresses. I'll keep you abreast of any changes via
in-class communication, email, and by updating the course schedule.
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#8594F7" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="grades"></a> Grades</th>
</tr>
</tbody>
</table>
</p>
<p>
What are grades? What purpose do they serve? What do they mean? <a href="https://www.jessestommel.com/how-to-ungrade/" target="_blank"><font color="blue">
This blog post</font></a> outlines some problems with grades.
</p>
<p>
The following is the grading scheme that I would like to implement for the course.
I feel it strikes a balance between a variety of different manners of doing and presenting mathematics.
Please let me know if you would like to see any changes.
I would like everyone to understand how grades are calculated. <br />
<li>Homework: 40%
<!--<li>Primary Source Project: 15%-->
<li>Quiz 1: 13%
<li>Quiz 2: 13%
<li>Quiz 3: 13%
<li>Final Exam: 21%
</p>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p><table bgcolor="#8594F7" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="hw"></a>Homework</th>
</tr>
</tbody>
</table>
</p>
<p>
There will be psuedo-weekly homework assignments this semester. <!-- You can find them
in <b><a href="https://csusm.instructure.com/courses/35452/modules" target="_blank"><font color="blue">
the modules tab in Canvas</font></a>.</b> -->They will be created by me.
They will feature exercises from the book and things I find interesting.
Due dates for homework assignments are given in the
<b><a href="AbstractAlgebraCourseScheduleFall2024.pdf" target="_blank"><font color="blue">Course Schedule</font></a>.</b>
Roughly, homework is due on Wednesdays
at 11:59 pm. It will be due in Gradescope. <!-- Hopefully, you've received an email enrolling you in
<b><a href="https://www.gradescope.com/courses/437269/assignments/2225700/submissions" target="_blank"> -->
<br />
<br />
In general, the GA and I will grade one or two homework problems in-depth and grade the rest for completion.
As the semester progresses, our standards for mathematical writing and logical argument will become higher.
Quizzes will feature problems that are from the homework or remarkably similar to homework problems,
so spending time completing homework to perfection is doubly advantageous. <br />
<p>It is natural and expected to struggle on homework. You are encouraged to work together and come to office hours for help with homework. <b>Homework is
a place to learn how to do things!</b> You may use whatever resources you wish on the homework as long as you cite your sources and submit your own work.</p>
<b>Copying and pasting the output of AI such as ChatGTP is academically dishonest.</b>
You can and should use AI resources such as ChatGTP, but you should personalize your answers and ensure that they are your own.</p>
<p>
<!--<p><a href="https://digitalcommons.ursinus.edu/triumphs_abstract/3/" target="_blank"><font color="blue"><b>Primary Source Project (PSP):</b></font></a>
In the primary source project will look at some of the primary sources (the initial research papers) where
mathematicians developed key ideas about groups. Specifically, we will be looking at quotient groups. This assignment is focussed on reading,
understanding, and translating the historical research mathematics that has become Abstract Algebra. More details will be forthcoming as we
get closer to the project, but you will be working in groups to complete a portion of the project. We will not be doing all 60+ pages of the project.</p>-->
<b><u>Support</u></b>
<p>Some big-picture resources are the
<a href="https://www.csusm.edu/sass/index.html" target="blank"><font color="blue">Student Academic Support Services (SASS)</font></a>,
<a href="https://www.csusm.edu/asc/index.html" target="blank"><font color="blue">Academic Success Center</font></a>, and the
<a href="https://www.csusm.edu/students/index.html#acasupport" target="blank"><font color="blue">academic support</font></a>. </p>
<p>Finally, I have three+ hours a week that are specifically for helping y'all, and the GA has one hour as well.
Please come to my office hours with any questions! If you think a question is dumb or you think
you "don't understand anything," then that is even more reason to come to my office hours.
I am very used to struggling with math and I want to help everyone learn in this course.
I can assure you that I have made math mistakes that are much more embarrassing than
any mistake you will make in this course. </p>
<p>Class attendance is not mandatory this semester, though it is highly encouraged. I know things are difficult for everyone right now and
I know flexibility is appreciated, so I will not grade participation directly.
However, we will have in-class assessments.</p>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p><table bgcolor="#8594F7" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="exams"></a>Quizzes and Final</th>
</tr>
</tbody>
</table>
</p>
<p>
We will have three quizzes and a final exam.
<p> In-class quizzes are closed book and notes. Quizzes will last ~40 minutes. Quiz problems will be homework problems or very similar problems and examples.
<p><b>Make-Up Policy:</b> In general, no make-ups for quizzes will be given.
If you are going to miss a quiz and can show proof of some officially acceptable reason, e.g.: a verifiably documented medical excuse
or a conflicting official university sanctioned activity that cannot be rescheduled, then we can make arrangements.<br />
If you are sick or something comes up, then please let me know as far before the assignment or assessment is due as you can.
We will do our best to get through this semester safely and healthily.
On as case-by-case basis, I can try to make arrangements in a way that is as fair and equitable as possible.
<p>
Please avoid making travel arrangements that would not allow you to take the final at the scheduled
time. A final may be rescheduled if you have more than three finals in a single calendar day
or more than four final exams in a 24-hour period. <!-- All rescheduled final exams must be approved by the
<a href="https://dos.uconn.edu/" target="_blank"><font color="blue">Dean of Students Office</font></a> and they do not easily
allow rescheduling. -->
Please note that CSUSM does <bf>NOT</bf> consider
vacations, previously purchased tickets or reservations, graduations, social events, misreading
the assigned final exam schedule, and oversleeping as viable excuses for missing a final exam.
If you think that your situation warrants permission to reschedule, please contact me as well as the DoS office as soon as possible.
</p>
<br />
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#8594F7" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="outcomes"></a> Student Learning Outcomes</th>
</tr>
</tbody>
</table>
</p>
<p style="text-align:left"><a href="https://www.csusm.edu/math/bsdegree/slos.html" ><font color="blue">
<b>BS in Mathematics Student Learning Outcomes:</b></font></a>
<br />
Students who graduate with a Bachelor of Science in Mathematics will be able to:
<br />
1. Apply the core concepts of algebra and analysis.<br />
2. Explain mathematical ideas, written and verbally, in a clear and organized way. <br />
3. Develop and write mathematical proofs. <br />
4. Apply mathematical algorithms and use appropriate technology for the solution of mathematical problems and analysis of real world models. <br />
5. Recognize the interdependency of different areas of mathematics, as well as connections between mathematics and other disciplines. <br />
</p>
<br />
<p style="text-align:left"><a href="https://www.csusm.edu/math/msdegree/learningoutcomes.html" ><font color="blue">
<b>MS in Mathematics Student Learning Outcomes:</b></font></a>
<br />
Students who graduate with a Master of Science in Mathematics will be able to:
<br />
1. Apply advanced concepts of algebra.<br />
2. Apply advanced concepts of analysis. <br />
3. Compose and present extended passages of mathematical prose following modern conventions of precision and clarity. <br />
4. Develop and write mathematical proofs in advanced areas of mathematics. <br />
5. Develop and analyze mathematical models and algorithms, utilizing appropriate software and drawing from different fields of mathematics when necessary. <br />
</p>
<br />
<li> All-University Writing Requirement: The requirement of 2500 words for courses of 3 or more units will be satisfied
in this course by proof writing on the homework, quizzes, primary source project, and final exam.
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#5F73F9" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="synchronicity"></a>Synchronicity and Late Work</th>
</tr>
</tbody>
</table>
</p>
This is an in-person class and has been designed to be taught in person.
Not attending in person will affect your experience in this course.
However, to make it easier for you to engage in this course regardless of your situation,
I will be asking for note takers and hopefully posting their notes.
Please let me know if you enjoy taking detailed notes and want to post them for everyone.
<!--Update: Two very kind students have volunteered to take notes.
<a href="https://csusm.instructure.com/courses/5143/modules" target="blank"><font color="blue">
The notes are now posted in the "Modules" section in Canvas. </font></a>. -->
There will be days where we will do graded work in class.
You must let me know well before these days if you are absolutely unable to attend.
<p>
<p>Late assignments (homework, projects, quizzes, and exams) will have points deducted based on how late the assignment is.
I reserve the right to deduct points from late work or award no credit for late work as I see fit.
Unless otherwise noted or excepted, late work turned in after the last day of class will not be accepted.
Generally, I am happy to give extensions if you let me know well before an assignment is due.
If you are having trouble staying on top of your assignments, please come talk to me.
My goal is to help you learn.</p>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#5F73F9" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="statement"></a>Statement of Expectations</th>
</tr>
</tbody>
</table>
</p>
<p>
I understand everyone is dealing with different things in their lives,
and I will do my best to be flexible and accomodating.
I ask you to be open with me and to discuss issues with me when they come up.
I will listen and do what I can to help you succeed in this course.
Conversely, I ask that you be understanding of the mistakes I will certainly make,
and I ask that you give me honest feedback about how I can improve.
<p>
As individuals and as a class we will be respectful of everyone;
language or behavior that discriminates against or excludes anyone will not be tolerated.
We will avoid stereotypes about who is "good" at math.
Math is difficult, but also beautiful,
and as a class we will work together to overcome difficulties and share the beauty.
This is especially true with group work.
You must treat your group members with respect and engage in positive and constructive conversations.
If you are curious about what this environment looks like, I invite you to check out the
<a href="https://www.csusm.edu/civility/about/index.html" target="blank">
<font color="blue">CSUSM Civility Campaign</font></a>.
</p>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<table bgcolor="#5F73F9" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="integrity"></a>Academic Integrity</th>
</tr>
</tbody>
</table>
</p>
<p>
Students will be expected to adhere to the guideline of academic honesty and integrity, as outlined in the
<a href="https://www.csusm.edu/dos/studres/standards_student_conduct.html" target="blank">
<font color="blue">CSUSM Standards for Student Conduct</font></a>.
All assignments must be original work, clear and error-free.
All ideas/material that are borrowed from other sources must have appropriate references to the original sources.
Any quoted material should give credit to the source and be punctuated accordingly. </p>
<p>Students are responsible for honest completion and representation of their work.
Unless otherwise noted, all completed assignments are to consist solely of your own individual work and ideas
without input from any external resources or persons.
There will be zero tolerance for infractions.
If you believe there has been an infraction by someone in the class, please bring it to the my attention.
I reserve the right to discipline any student for academic dishonesty,
in accordance with the general rules and regulations of the university.
Disciplinary action may include the lowering of grades and/or the assignment of a failing grade for an exam, assignment, or the class as a whole.
It is recommended that students consult the
<a href="https://csusm.policystat.com/policy/7984230/latest/" target="blank"><font color="blue">CSUSM Academic Honesty Policy</font></a>.</p>
<!-- I expect you to be familiar with and abide by
<a href="https://community.uconn.edu/the-student-code-appendix-a/" target="_blank">
<font color="blue">UConn's academic integrity policy</font></a> at all times. There should be no
help given or received on exams or quizzes, not from other people, not from tutors, not from online sites.
Academic misconduct includes, but is not limited to, providing or receiving assistance in a manner
not authorized by the instructor in the creation of work to be submitted for academic evaluation
(e.g. papers, projects, examinations and assessments - whether online or in class); presenting,
as one's own, the ideas, words or calculations of another for academic evaluation; doing
unauthorized academic work for which another person will receive credit or be evaluated;
using unauthorized aids in preparing work for evaluation (e.g. unauthorized formula sheets,
unauthorized calculators, unauthorized programs or formulas loaded into your calculator, etc.);
and presenting the same or substantially the same papers or projects in two or more courses without
the explicit permission of the instructors involved.
A student who knowingly assists another student in committing an act of academic misconduct
shall be equally accountable for the violation, and shall be subject to the sanctions and other
remedies as described in <a href="https://community.uconn.edu/the-student-code-appendix-a/" target="_blank">
<font color="blue">Appendix A</font></a> of the <a href="https://community.uconn.edu/the-student-code/" target="_blank">
<font color="blue">Student Code</font></a>.
Sanctions shall include, but are not limited to, a letter sent to the Office of Community
Standards of the University; a grade of 0 on the assignment, quiz or exam; a grade of F for
the course. -->
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#5F73F9" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="Support"></a>Support From Me</th>
</tr>
</tbody>
</table>
</p>
<p>I pledge to do my utmost as your instructor to support you and your success in this class.
Regardless of your race,
color, religion, sex, sexual orientation, gender identity or
expression, age, disabilities, citizenship, or national origin, I am happy that you're taking this course
and I am excited to help you learn math. I will do everything I can to make sure you feel welcome in
our classroom and address any aspects or elements of the course that may make you feel unwelcome.
This runs the gamut from being willing to make accomodations for religious observances to making sure
our classroom is a supportive place. Please come to me with any concerns you have! I'm here to listen and
to help give you the tools and conditions to be successful in this course.</p>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#5F73F9" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="kids"></a>Policies on Children in Class</th>
</tr>
</tbody>
</table>
</p>
The University currently does not have a policy for children in classrooms. What follows is a reflection of my own commitments to students as parents:
You are welcome to feed your baby (breastfed and/or bottlefed) in my classroom;
If you need to pump breastmilk during class time, I would be happy to coordinate timing breaks around this;
Unforeseen disruptions in childcare should not be a deterrent for attending class; it is perfectly acceptable to bring your child to class, as needed;
As students and parents, you are held to the same standards as your peers (deadlines, etc.),
but I am happy to discuss routines and practices that facilitate a healthy school-parenting balance.
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#4AD1C0" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="credit"></a>Expanded Credit Hour Statement</th>
</tr>
</tbody>
</table>
</p>
<p>
As a three unit course, the award of credit in this course is based on learning activities
outside of class meetings having been designed to require a minimum of six hours of effort each week working for most students.
More prosaically, about two hours of work will be required for each 50 minutes we spend together in class.
This work includes things like reading the text, working on homework problems, writing proofs, working in groups on projects,
and studying for assessments.
</p>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#4AD1C0" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="writing"></a>The Writing Center</th>
</tr>
</tbody>
</table>
</p>
Writing Help (for all classes):
The Writing Center offers welcoming digital and face-to-face learning environments where certified student consultants
offer constructive guidance at any stage of the writing process--idea generation, argument development, sentence-polishing, and more.
They start with the prompt and ask guiding questions as you work to develop compelling work. Chat, voice, and video sessions are available on
Microsoft Teams, by appointment; Quick Help is available on Teams on a drop-in basis;
asynchronous feedback is available by request; and in-person tutoring is available by appointment.
Additional services include Academic English support, webinars, and various online resources. <br />
Follow them on Instagram: @wccsusm.
Questions? Email: [email protected]
Check out details here:
<a href="https://www.csusm.edu/writingcenter/index.html" target="blank">
<font color="blue">CSUSM Writing Center</font></a>.
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#4AD1C0" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="accessibility"></a> Accessibility Issues</th>
</tr>
</tbody>
</table>
</p>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
If you have or think you have a disability and would like support, please let me know so that I can help facilitate accommodations.
Students with disabilities who require reasonable accommodations must be approved for services by providing appropriate
and recent documentation to the Disability Support Services (DSS) Office. This office is located in Craven Hall 4300,
and can be contacted by phone at (760) 750-4905, or TTY (760) 750-4909, and by email sent to [email protected].
Students authorized by DSS to receive reasonable accommodations should meet with me during my office hours in order to ensure confidentiality.
</p>
<p>For COVID-19 related class concerns (e.g., excused absences, missed exams, late work etc.),
please contact your instructor. For all other COVID-19 related concerns that students wish to get
campus support to address (e.g., exposure, diagnosis, ongoing symptoms, etc.), students should feel free to contact the Cougar Care Network.
You are welcome but not required to let your instructor know of any COVID-19 related concerns.</p>
<br>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#4AD1C0" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="cougarcare"></a> Cougar Care Network</th>
</tr>
</tbody>
</table>
</p>
<b> Cougar Care Network: </b>
The Dean of Students division provides support resources via the Cougar Care Network (CCN).
CCN can be used by faculty, staff, and students. Per the CCN homepage,
“Cougar Care Network(CCN) provides information, connection to resources, advocacy and support for students dealing with personal,
academic, financial or other challenges which may adversely affect their academic success and/or collegiate experience.”
As a student you may self-refer if you find that you need help with connecting with campus support resources.
As your instructor, I may refer you to CCN if I see that you would benefit from campus assistance beyond what I can provide
academically for the scope of this class. For more information visit
<a href="https://www.csusm.edu/ccn/index.html" target="blank">
<font color="blue">the CCN home page</font></a>.
<br>
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#4AD1C0" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="reporting"></a>Mandated Reporting & Resources</th>
</tr>
</tbody>
</table>
</p>
CSUSM is committed to fostering a campus community based on respect.
To this end, we recognize that all CSUSM community members are responsible for helping to ensure that our community is free from
harassment, discrimination, sexual misconduct, domestic violence, and stalking.
In accordance with Title IX, CSUSM is legally obligated to respond to reported incidents of
harassment, discrimination, sexual misconduct, domestic violence, and stalking.
Faculty who become aware of an incident of harassment,discrimination, sexual misconduct, domestic violence, and stalking are
required to notify CSUSM’s Title IX Coordinator.
The purpose of this disclosure is to ensure that students are made aware of their reporting options and resources for support.
For more information about your rights and reporting options at CSUSM, including confidential and anonymous reporting options,
please visit
<a href="http://www.csusm.edu/title9/" target="blank">
<font color="blue">CSUSM's Title IX page</font></a>.
<br />
<!-- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-->
<p>
<table bgcolor="#4AD1C0" border="1" cellpadding="4" cellspacing="2" width="100%">
<tbody>
<tr>
<th align="left"><a name="land"></a>The Land We Are Occupying</th>
</tr>
</tbody>
</table>
</p>
The land on which we gather is the traditional territory of the Luiseño/Payómkawichum people.
Today, the meeting place of CSUSM and its surrounding areas is still home to the six federally recognized bands
of the La Jolla, Pala, Pauma, Pechanga, Rincon, Soboba Luiseño/Payómkawichum people.
It is also important to acknowledge that this land is a space shared by the Kuupangaxwichem/Cupeño, Kumeyaay, and Ipai peoples.
For more information, please go to CSUSM's <a href="https://www.csusm.edu/cicsc/" target="blank">
<font color="blue">California Indian Culture and Sovereignty Center (CICSC) page</font></a>.
</div>
<!-- Things missing: General Education Program Student Learning Outcomes (GEPSLOs)
The syllabus must include a list of all GEPSLOs that the course has been recognized by the General Education Committee as addressing.
At their own discretion,
instructors may choose additionally to indicate how the GEPSLOs are addressed in the course and how students will be expected to achieve them. -->
</body>
</html>
<div id="footer">
<br clear="all" />
</div>
</div>
</body>
</html>