You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
code | 2 years ago | |
docs | 2 years ago | |
notes | 2 years ago | |
protocol | 2 years ago | |
.gitignore | 2 years ago | |
README.md | 2 years ago |
README.md
Logik für Informatiker 2021
Diese Repository ist für die Übungsgruppe am Mittwoch.
LaTeX
Folgendes Einführungsvideo hat Emanuel erstellt https://www.youtube.com/watch?v=HPUGlcZNG2k. Alternativ kann es auch sinnvoll(er) mit Markdown/Pandocs zu arbeiten.
Wahrheitstabelle-Generator
Siehe https://web.stanford.edu/class/cs103/tools/truth-table-tool. Beispiele aus der Übung:
(A0 || (A3 -> ! A2))
((A0 -> A2) -> A1)
((A0 || A1) && ! (A0 || A1))
(A1 || (A2 && A1))
((A0 -> A1) -> (A1 -> A0))
Das Tool ist klug genug um zu erlauben, dass man äußerste Klammern weglässt,
und dass man bspw. A0 && A1 && A2
statt ((A0 && A1) && A2)
o. Ä. schreiben muss.