Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
niemasd committed Apr 12, 2024
1 parent 728bba1 commit 92c4d89
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
Binary file added images/cant_argue_with_that_meme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions teach_online/academic_integrity.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,48 @@ the following services may be of interest:
* [Proctorio](https://proctorio.com/) records students while they take exams and performs automated software-based video analysis as well as live human review
* Depending on the size of your class, your course staff can proctor students live using [Zoom](https://zoom.us/) or similar video conferencing services

### Exam Similarity Detection

Beyond just proctoring students *during* the exam,
another technique for detecting cheating is to look for similarity in exam responses.
The logic here is intuitive:
if two students have suspiciously similar exams,
they may have cheated on the exam
(e.g. collaboration, or one student copying from the other).
However, as a pedantic Computer Scientist,
I will pose a question that *sounds* simple but is actually deceptively complex:
how exactly do we define exam "similarity"?

```{figure} ../images/cant_argue_with_that_meme.png
---
height: 300px
name: cant_argue_with_that_meme
---
You, when you realize the true complexity of the question.
```

At a glance, one might think to define "similarity" as the
proportion of questions both students responded to with the exact same answer.
In other words, count the number of questions that had identical answers,
and divide by the total number of questions on the exam.
I mean, if two students collaborate/copy on an exam,
we expect them to have identical (or near-identical) answers, right?
Well, sure, that's true:
students who collaborate/copy will likely have a lot of identical answers.
However, the reverse direction is not necessarily true:
students who have a lot of identical answers didn't necessarily collaborate/cheat:
assuming the instructor wrote a fair exam,
students *should* hopefully converge towards the correct answers,
meaning two students who mastered all of the course materials should have identical
(or near-identical) exams (all of the right answers).
In the world of statistics,
we call this simple model [non-identifiable](https://en.wikipedia.org/wiki/Identifiability):
two different input scenarios (collaborate vs. just do well on the exam)
result in the same outcome (high proportion of identical answers),
so the proportion of identical answers may not be super informative in cheating detection on its own.

TODO TALK ABOUT SHARED IDENTICAL ANSWERS

```{glossary}
Detection
The act of correctly identify cases of cheating {cite:p}`eaton_remote_2024`.
Expand Down
2 changes: 1 addition & 1 deletion teach_online/modalities.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ once said about hard vs. soft tacos,
```{figure} ../images/why_not_both_meme.png
---
height: 300px
name: why-not-both-meme
name: why_not_both_meme
---
"Why not both?" meme.
```
Expand Down

0 comments on commit 92c4d89

Please sign in to comment.