-
Notifications
You must be signed in to change notification settings - Fork 2
/
cal.yaml
1035 lines (967 loc) · 29.5 KB
/
cal.yaml
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
Special Dates:
Courses begin: 2019-08-27
Courses end: 2019-12-06
Add deadline: 2019-09-10
Drop deadline: 2019-10-15
Withdraw deadline: 2019-10-22
Thanksgiving recess:
start: 2019-11-27
end: 2019-12-01
Reading days:
start: 2019-10-05
end: 2019-10-08
meta:
timezone: America/New_York
name: DMT1
lecture exam: true
home: https://www.cs.virginia.edu/luther/DMT1/F2019/
final:
start: 2019-12-16 14:00:00
duration: 180
room: Rufner G008
sections:
CS2102-002a:
type: lecture
room: Rufner G008
days: [Monday, Wednesday]
start: 15:30:00
duration: 50
CS2102-002b:
type: lab
room: Rufner G008
days: [Friday]
start: 15:30:00
duration: 50
office hours:
.begin: 2019-09-04
faculty:
Tychonievich:
where: Rice 208
when:
- dow: Monday
start: 10:00:00
end: 11:00:00
- dow: Tuesday
start: 13:00:00
end: 15:00:00
- dow: Friday
start: 11:00:00
end: 12:00:00
except: [2019-09-06]
- date: 2019-12-10
start: 12:30:00
end: 13:30:00
TA:
David:
when:
- dow: Monday
start: 11:00:00
end: 12:30:00
where: Rice 442
- dow: Wednesday
start: 11:00:00
end: 12:30:00
where: Rice 442
Alicia:
when:
- dow: Monday
start: 11:00:00
end: 11:45:00
where: Rice 442
- dow: Wednesday
start: 11:00:00
end: 11:45:00
where: Rice 442
- dow: Tuesday
start: 14:00:00
end: 15:00:00
where: Rice 442
- dow: Thursday
start: 14:00:00
end: 15:00:00
where: Thornton A-233
except: [2019-09-12]
Sarah:
when:
- dow: Tuesday
start: 15:30:00
end: 16:30:00
where: Rice 442
- dow: Thursday
start: 15:30:00
end: 16:30:00
where: Thornton A-233
Anthony:
when:
- dow: Monday
start: 9:30:00
end: 10:30:00
where: Rice 442
- dow: Tuesday
start: 15:30:00
end: 16:30:00
where: Rice 442
- dow: Wednesday
start: 9:30:00
end: 10:30:00
where: Rice 442
- dow: Thursday
start: 15:30:00
end: 16:30:00
where: Thornton A-233
- dow: Friday
start: 9:30:00
end: 10:30:00
where: Thornton A-233
- dow: Friday
start: 13:00:00
end: 15:30:00
where: Thornton A-233
- dow: Friday
start: 16:30:00
end: 21:00:00
where: Rice 442
Eric:
when:
- dow: Friday
start: 16:30:00
end: 17:30:00
where: Rice 442
- dow: Sunday
start: 13:00:00
end: 16:00:00
where: Rice 442
Connor:
when:
- dow: Tuesday
start: 15:00:00
end: 17:00:00
where: Rice 442
- dow: Wednesday
start: 14:00:00
end: 15:30:00
where: Rice 442
lectures:
- welcome
- [propositions, operators]
- truth tables
- equivalence rules
- equivalence proofs
- predicates
- quantifiers
- sets
- sets
- data types
- data types
- cardinality
- [contradiction, induction]
- induction
- summation
- combination
- permutation
- counting proofs
- automata
- automata
- primes
- logs
- graphs
- graphs
- and beyond
- review
- review
labs:
- real maths
- lab01
- lab02
- lab03
- lab04
- lab05
- contradiction
- lab06
- lab07
- lab08
- lab09
- lab10
- lab11
- make-up
reading:
lab01:
- txt: list of symbols
lnk: symbols.html
- txt: practice quiz
lnk: files/lab01_propositions_practice.pdf
- txt: practice key
lnk: files/lab01_propositions_practice_key.pdf
- txt: quiz
lnk: files/quiz01.pdf
- txt: key
lnk: files/quiz01_key.pdf
lab02:
- txt: list of symbols
lnk: symbols.html
- txt: practice quiz
lnk: files/lab02_equivalence_practice.pdf
- txt: practice key
lnk: files/lab02_equivalence_practice_key.pdf
- txt: quiz
lnk: files/quiz02.pdf
- txt: key
lnk: files/quiz02-key.pdf
lab03:
- txt: list of symbols
lnk: symbols.html
- txt: practice quiz
lnk: files/lab03.pdf
- txt: practice key
lnk: files/lab03-key.pdf
- txt: quiz
lnk: files/quiz03.pdf
- txt: key
lnk: files/quiz03-key.pdf
lab04:
- txt: list of symbols
lnk: symbols.html
- txt: practice quiz
lnk: files/lab04.pdf
- txt: practice key
lnk: files/lab04-key.pdf
- lnk: "set-practice.html"
txt: "more practice"
- txt: quiz
lnk: files/quiz04.pdf
- txt: key
lnk: files/quiz04-key.pdf
lab05:
- txt: practice quiz
lnk: files/lab05.pdf
- txt: practice key
lnk: files/lab05-key.pdf
- txt: quiz
lnk: files/quiz05.pdf
- txt: key
lnk: files/quiz05-key.pdf
lab06:
- txt: practice quiz
lnk: files/lab06.pdf
- txt: practice key
lnk: files/lab06-key.pdf
- txt: quiz
lnk: files/quiz06.pdf
- txt: key
lnk: files/quiz06-key.pdf
lab07:
- txt: practice quiz
lnk: files/lab07.pdf
- txt: practice key
lnk: files/lab07-key.pdf
- txt: quiz
lnk: files/quiz07.pdf
- txt: key
lnk: files/quiz07-key.pdf
lab08:
- txt: practice quiz
lnk: files/lab08.pdf
- txt: practice key
lnk: files/lab08-key.pdf
- txt: quiz
lnk: files/quiz08.pdf
- txt: key
lnk: files/quiz08-key.pdf
lab09:
- txt: practice quiz
lnk: files/lab09.pdf
- txt: practice key
lnk: files/lab09-key.pdf
- txt: quiz
lnk: files/quiz09.pdf
- txt: key
lnk: files/quiz09-key.pdf
lab10:
- txt: practice quiz
lnk: files/lab10.pdf
- txt: practice key
lnk: files/lab10-key.pdf
- txt: quiz
lnk: files/quiz10.pdf
- txt: key
lnk: files/quiz10-key.pdf
lab11:
- txt: shown during quiz
lnk: graph_def.html
- txt: practice quiz
lnk: files/lab11.pdf
- txt: practice key
lnk: files/lab11-key.pdf
- txt: quiz
lnk: files/quiz11.pdf
- txt: key
lnk: files/quiz11-key.pdf
welcome:
- "§Introduction"
- "∀x 1.0"
- txt: on proofs
lnk: proofs.html
real maths:
lnk: https://medium.com/@jeremyjkun/habits-of-highly-mathematical-people-b719df12d15e
txt: six habits
propositions:
- "§1.1"
- "∀x 4.3"
operators:
- "§3–3.2.0"
- "∀x 5"
truth tables:
- "§3.2.1–3.2.2"
- "∀x 8, 10"
equivalence rules:
- "§3.3–3.4"
- "∀x 11.2"
equivalence proofs:
- "§3.4.2"
- "∀x 14–15"
- lnk: "axioms.html"
txt: "equivalences"
- lnk: "demorgan.html"
txt: "example proof"
- lnk: "techniques-q2.html"
txt: "proof techniques"
predicates:
- "§1.2"
- "∀x 21.0–21.3"
- "skim §4.1.0"
quantifiers:
- "∀x 21.4–24"
- "§3.6"
- "skim ∀x 25–26"
- "practice exercises in ∀x 22 and 23"
sets:
- lnk: "sets.html"
txt: "sets writeup"
- lnk: "set-practice.html"
txt: "practice"
- "§4.1.1"
data types:
- "§4.1–4.4"
- txt: "§4 addenda"
lnk: "chap4.html"
cardinality:
- "§4.5"
- "§7.1"
- txt: pigeonhole principle
lnk: https://en.wikipedia.org/wiki/Pigeonhole_principle
contradiction:
- "§1.8"
- "§2"
- txt: Cantor diagonalization
lnk: cantor.html
- txt: open sets
lnk: openset.html
induction:
- "§2"
- "§5.1–5.3"
summation:
- "§13.0–13.2"
combination:
- "§14.5"
permutation:
- "§14.0—14.6"
counting proofs:
- "§14.0—14.6"
- "§13.0–13.2"
- txt: reductions writeup
lnk: reducibility.html
- txt: proof techniques
lnk: techniques-q8.html
graphs:
- "§9"
automata:
- "§5.4"
primes:
- "§8.0–8.7"
logs:
- txt: wikipedia
lnk: https://en.m.wikipedia.org/wiki/Logarithm
review:
- txt: topic breakdown
lnk: lectures/topics.txt
make-up:
- txt: quiz
lnk: files/quiz12.pdf
assignments:
".groups":
HW:
portion: "30"
drop: 1
Quiz:
portion: "30"
drop: 1
excuse: 1
Final:
portion: "40"
HW01:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=01'
due: 2019-09-02 13:00:00
open: 2019-08-27 19:00:00
weight: 0
HW02:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=02'
due: 2019-09-09 13:00:00
open: 2019-09-06 19:00:00
HW03:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=03'
due: 2019-09-16 13:00:00
open: 2019-09-13 19:00:00
HW04:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=04'
due: 2019-09-23 13:00:00
open: 2019-09-20 19:00:00
HW05:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=05'
due: 2019-09-30 13:00:00
open: 2019-09-27 19:00:00
HW06:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=06'
due: 2019-10-09 13:00:00
open: 2019-10-04 19:00:00
HW07:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=07'
due: 2019-10-21 13:00:00
open: 2019-10-18 19:00:00
HW08:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=08'
due: 2019-10-28 13:00:00
open: 2019-10-25 19:00:00
weight: 0
HW09:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=09'
due: 2019-11-08 13:00:00
open: 2019-11-04 17:00:00
HW10:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=10'
due: 2019-11-11 13:00:00
open: 2019-11-08 19:00:00
HW11:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=11'
due: 2019-11-18 13:00:00
open: 2019-11-15 19:00:00
HW12:
link: 'https://kytos.cs.virginia.edu/dmt1/quizzes/quiz.php?qid=12'
due: 2019-11-25 13:00:00
open: 2019-11-22 19:00:00
Quiz01-1:
due: 2019-09-06 16:30:00
weight: 0.5
hide: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- attempted all problems
- have term definitions
- all definitions are propositions
- all definitions are atomic propositions
- all definitions are from text
- no part of text left out
- have formula
- 1st formula correct
- 2nd formula correct
- 3rd formula correct
Quiz01-2:
due: 2019-09-06 16:20:00
open: 2019-09-06 16:00:00
weight: 0.5
hide: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- attempted all problems
- '"one" when a ∨ b'
- '"three" contains negation of their "one" logic (¬(a ∨ b) unless errors with "one")'
- '"three" is equivalent to ¬a ∧ ¬b ∧ ¬c'
- reasonable logic syntax
- A ⊕ C column is 01011010
- B ↔ C column is 10011001
- name: center column ↔ of other two (00111100 unless errors above)
weight: 2
Quiz01:
due: 2019-09-06 16:30:00
weight: 1
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- (Quiz01-1) attempted all problems
- (Quiz01-1) have term definitions
- (Quiz01-1) all definitions are propositions
- (Quiz01-1) all definitions are atomic propositions
- (Quiz01-1) all definitions are from text
- (Quiz01-1) no part of text left out
- (Quiz01-1) have formula
- (Quiz01-1) 1st formula correct
- (Quiz01-1) 2nd formula correct
- (Quiz01-1) 3rd formula correct
- (Quiz01-2) attempted all problems
- '(Quiz01-2) "one" when a ∨ b'
- '(Quiz01-2) "three" contains negation of their "one" logic (¬(a ∨ b) unless errors with "one")'
- '(Quiz01-2) "three" is equivalent to ¬a ∧ ¬b ∧ ¬c'
- (Quiz01-2) reasonable logic syntax
- (Quiz01-2) A ⊕ C column is 01011010
- (Quiz01-2) B ↔ C column is 10011001
- name: (Quiz01-2) center column ↔ of other two (00111100 unless errors above)
weight: 2
Quiz02-1:
due: 2019-09-13 16:20:00
open: 2019-09-13 16:00:00
weight: 0.25
hide: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- start with (P ∧ ¬Q)
- logic syntax used
- attmpted a full proof
- applied rules correctly
- no skipped steps
- end with ¬(P → Q)
Quiz02-2:
due: 2019-09-13 16:20:00
open: 2019-09-13 16:00:00
weight: 0.75
hide: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- used same variable in all three blanks
- wrote something in all four areas
- got both case 1 expressions to same form
- ... with the case assumption correctly inserted
- ... using valid equivalence rules
- ... expressed in prose
- got both case 2 expressions to same form
- ... with the case assumption correctly inserted
- ... using valid equivalence rules
- ... expressed in prose
Quiz02:
due: 2019-09-13 16:20:00
open: 2019-09-13 16:00:00
weight: 1
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- (Quiz02-1) start with (P ∧ ¬Q)
- (Quiz02-1) logic syntax used
- (Quiz02-1) attmpted a full proof
- (Quiz02-1) applied rules correctly
- (Quiz02-1) no skipped steps
- (Quiz02-1) end with ¬(P → Q)
- weight: 1.8
name: (Quiz02-2) used same variable in all three blanks
- weight: 1.8
name: (Quiz02-2) wrote something in all four areas
- weight: 1.8
name: (Quiz02-2) got both case 1 expressions to same form
- weight: 1.8
name: (Quiz02-2) ... with the case assumption correctly inserted
- weight: 1.8
name: (Quiz02-2) ... using valid equivalence rules
- weight: 1.8
name: (Quiz02-2) ... expressed in prose
- weight: 1.8
name: (Quiz02-2) got both case 2 expressions to same form
- weight: 1.8
name: (Quiz02-2) ... with the case assumption correctly inserted
- weight: 1.8
name: (Quiz02-2) ... using valid equivalence rules
- weight: 1.8
name: (Quiz02-2) ... expressed in prose
Quiz03-1:
due: 2019-09-20 16:20:00
open: 2019-09-20 16:00:00
weight: 0.4
hide: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- no G are F
- everything is F
- nothing is G
- uses therefore symbol
- all G are F
- something is G
- some G is F
- in the right order with no extras
Quiz03-2:
due: 2019-09-20 16:20:00
open: 2019-09-20 16:00:00
weight: 0.6
hide: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- "first: uses M and Z"
- "first: universal or not-exist quantifier"
- "first: logcally correct"
- "second: uses L and b"
- "second: universal quantifier"
- "second: implication"
- "second: L(x,b) → L(b,x) not the other way around"
- "third: universal or not-exist"
- "third: allows both artist and champion to love"
- "third: ...only if they share no love"
Quiz03:
due: 2019-09-20 16:20:00
open: 2019-09-20 16:00:00
weight: 1
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- (Quiz03-1) no G are F
- (Quiz03-1) everything is F
- (Quiz03-1) nothing is G
- (Quiz03-1) uses therefore symbol
- (Quiz03-1) all G are F
- (Quiz03-1) something is G
- (Quiz03-1) some G is F
- (Quiz03-1) in the right order with no extras
- weight: 1.2
name: "(Quiz03-2) first: uses M and Z"
- weight: 1.2
name: "(Quiz03-2) first: universal or not-exist quantifier"
- weight: 1.2
name: "(Quiz03-2) first: logcally correct"
- weight: 1.2
name: "(Quiz03-2) second: uses L and b"
- weight: 1.2
name: "(Quiz03-2) second: universal quantifier"
- weight: 1.2
name: "(Quiz03-2) second: implication"
- weight: 1.2
name: "(Quiz03-2) second: L(x,b) → L(b,x) not the other way around"
- weight: 1.2
name: "(Quiz03-2) third: universal or not-exist"
- weight: 1.2
name: "(Quiz03-2) third: allows both artist and champion to love"
- weight: 1.2
name: "(Quiz03-2) third: ...only if they share no love"
Quiz04:
due: 2019-09-27 16:20:00
open: 2019-09-27 16:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- "B has 1,4,9 (half credit for 1,2,3)"
- "B has 0 and no extra elements"
- "C has {} (half credit if C *is* {})"
- "C has {4}, {9}, {4,9} and no extra elements"
- {name: "A ∪ B has all of {0,2,3} and all of B ({0,1,2,3,4,9} unless B wrong)", weight: 2}
- "A ∪ B has nothing else, with no element listed twice"
- {name: "A ∩ B has only elements A has, and only elements B has ({0} unless B wrong)", weight: 2}
- "A ∩ B has all such elements"
- "A ∖ B has only elements A has, and no elements B has ({2,3} unless B wrong)"
- "A ∖ B has all such elements"
- "B ∪ C has both numbers and sets"
- "⊕-set is correct ({1, 2, 3, 4, 9} unless B is wrong)"
- "∀-set is B ∖ A ({1, 4, 9} unless B is wrong)"
- "∃-set is B ∩ {4, 9}"
Quiz05:
due: 2019-10-04 16:20:00
open: 2019-10-04 16:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- "1. {(4,1), (4,2), (1,1), (1,2)}"
- "2. {(4,1,3,3,3), (4,2,3,3,3)} – extra parens like ((4,1), (3,3,3)) OK"
- "3. {(∅,∅)}"
- '4. two of "aok", "oka", and "aaa"'
- '5. "MTHMTCS"'
- "6. {0, 1, 4} – half credit if has 1 twice"
- "7. is defined as natural for some natural numbers but not all"
- "8. is not invertible with the domain and co-domain of ℕ"
- "9. b = 3a or equivalent – half-credit for a = 3b"
- "10. has at least one element of domain related to 2+ elements in co-domain"
Quiz06:
due: 2019-10-18 16:20:00
open: 2019-10-18 16:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- (Quiz06-1) base case includes 0
- (Quiz06-1) reasonable defense of base case being finite
- (Quiz06-1) induce on symbol (e.g. n), not specific number
- (Quiz06-1) next case is +1 (e.g., n+1)
- (Quiz06-1) appeals to addition of finite being finite
- (Quiz06-2) definition of x is mathematical, larger, and natural
- (Quiz06-2) defense of x being natural fits definition of x
- (Quiz06-2) defense of x being natural fits definition of natural
- (Quiz06-2) last blank mentions assuming led to contradiction
- (Quiz06-2) nothing else wrong with proof
Quiz06-1:
due: 2019-10-18 16:20:00
open: 2019-10-18 16:00:00
weight: 0.5
hide: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- base case includes 0
- reasonable defense of base case being finite
- induce on symbol (e.g. n), not specific number
- next case is +1 (e.g., n+1)
- appeals to addition of finite being finite
Quiz06-2:
due: 2019-10-18 16:20:00
open: 2019-10-18 16:00:00
weight: 0.5
hide: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- definition of x is mathematical, larger, and natural
- defense of x being natural fits definition of x
- defense of x being natural fits definition of natural
- last blank mentions assuming led to contradiction
- nothing else wrong with proof
Quiz07:
due: 2019-10-25 16:20:00
open: 2019-10-25 16:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- "1. 52 choose 5 = 2598960 (half for 52! / (52-5)! or 52⁵)"
- "2. 8! = 40320"
- "3. 8! / 2!3!2! = 1680"
- "4. 7776⁶"
- "5. 7776! / 7770! (half for 7776 choose 6)"
- "6. 15"
- "7. 3/64"
- "8. 40/57"
- "9. 40/60 = 2/3"
- "10. 1/1000 (half for 1/500; allow (999/1000)⁵⁰⁰ in front at no penalty)"
Quiz09:
due: 2019-11-08 16:20:00
open: 2019-11-08 16:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- has a base case
- base case includes -1
- base case shows both sides equal
- has inductive step
- inductive case assumes true at variable
- inductive case shows true at variable + 1
- induction argument uses algebra
- algebra correct
- has conclusion
- 'structure: introduces induction, labels parts, etc'
Quiz10:
due: 2019-11-15 16:20:00
open: 2019-11-15 16:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'Q1 is 2 · 2 · 3 · 5 (or 2² · 3 · 5)'
- 'Q2 is 3^y = x'
- 'Q3 is log_c(b) ÷ log_c(a) -- half credit if inverse of that'
- 'Q4 is 2 lg(a) + lg(b)'
- 'Q5 is 3/2'
- 'pf: each step follows from one above'
- 'pf: ends with only integers and powers on last line'
- 'pf: fits the rest of proof (e.g. 3^b = 2^a)'
Quiz11:
due: 2019-11-22 16:20:00
open: 2019-11-22 16:00:00
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'makes assumption'
- 'assumption is negation of theorem (some shortest walk is not a path)'
- 'derives contradiction'
- 'states contradiction means assumption false'
- 'all logic-based claims are true'
- 'all graph-based claims are true'
- 'appeals to definition of path (no repeat vertex)'
- 'appeals to shortness/length in some way'
q12logic:
due: 2019-12-06 16:20:00
open: 2019-12-06 15:30:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'shows mastery of topic'
q12ind:
due: 2019-12-06 16:20:00
open: 2019-12-06 15:30:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'shows mastery of topic'
q12cont:
due: 2019-12-06 16:20:00
open: 2019-12-06 15:30:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'shows mastery of topic'
q12comb:
due: 2019-12-06 16:20:00
open: 2019-12-06 15:30:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'shows mastery of topic'
q12struct:
due: 2019-12-06 16:20:00
open: 2019-12-06 15:30:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'shows mastery of topic'
q12sets:
due: 2019-12-06 16:20:00
open: 2019-12-06 15:30:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'shows mastery of topic'
final-logic:
due: 2019-12-16 17:00:00
open: 2019-12-16 14:00:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'shows mastery of topic'
final-ind:
due: 2019-12-16 17:00:00
open: 2019-12-16 14:00:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0
human:
- 'shows mastery of topic'
final-cont:
due: 2019-12-16 17:00:00
open: 2019-12-16 14:00:00
optional: true
rubric:
kind: hybrid
auto-weight: 0
late-penalty: 1
auto-late-days: 0