Twenty flashcards covering discrete mathematics foundations. Includes set operations, propositional logic and truth tables, logical equivalences, permutations and combinations, basic graph theory terminology, and proof by induction. Suited to computer science...
Twenty flashcards covering discrete mathematics foundations. Includes set operations, propositional logic and truth tables, logical equivalences, permutations and combinations, basic graph theory terminology, and proof by induction. Suited to computer science coursework, A-Level Further Maths and discrete maths modules.
Ready to test yourself?
Flip through all 20 cards in interactive study mode.
π΄
β²
A
β²
(or
π΄
π
A
c
) contains all elements in the universal set that are not in
π΄
A.
π΄
A is a subset of
π΅
B β every element of
π΄
A is also an element of
π΅
B. If additionally
π΄
β
π΅
A
ξ
=B, it's a proper subset (
π΄
β
π΅
AβB).
β£Aβ£, the number of distinct elements in a finite set
π΄
A.
A statement that is definitively either true or false, but not both β the basic unit of propositional logic.
π
β§
π
pβ§q is true only when both
π
p and
π
q are true; false in all other cases.
π
β¨
π
pβ¨q is true when at least one of
π
p or
π
q is true; false only when both are false.
π
β
π
pβq is true when exactly one of
π
,
π
p,q is true, but false when both are true β unlike inclusive OR.
The conditional
π
β
π
pβq ("if p then q") is false only when
π
p is true and
π
q is false. The converse is
π
β
π
qβp, not logically equivalent to the original.
π
β
π
pβq ("p if and only if q"), true when
π
p and
π
q have the same truth value (both true or both false).
If one task can be done in
π
m ways and a second independent task in
π
n ways, both together can be done in
π
Γ
π
mΓn ways.
A structure consisting of vertices (nodes) connected by edges (links), used to model relationships and networks β not related to coordinate graphs.
The number of edges incident to (connected to) that vertex.
Base case: prove the statement holds for the first value (e.g.
π
=
1
n=1). Inductive step: assume it holds for
π
=
π
n=k, then prove it holds for
π
=
π
+
1
n=k+1.