math final
module 1: logic
1. statements and negations
statement: a declarative sentence that can be objectively judged as either true or false, but not both. It expresses a complete thought. Opinions (like "James is tall") are not statements because they are subjective and lack objective truth value.
Example: "The sky is blue" (can be true or false depending on the time of day/weather, but it's a statement).
Example: " " (a false statement).
negation (~): a statement that has the opposite truth value of the original statement. If the original statement is true, its negation is false, and vice versa.
Symbol:
~pmeans "not p".Example: If
pis "It is raining," then~pis "It is not raining."
2. logical connectives
conjunction (∧): read as "and". This compound statement is true only if both of its component parts (simple statements) are true. If even one part is false, the entire conjunction is false.
Truth Table for
p ∧ q:pis T,qis T →p ∧ qis Tpis T,qis F →p ∧ qis Fpis F,qis T →p ∧ qis Fpis F,qis F →p ∧ qis F
disjunction (∨): read as "or". This compound statement is true if at least one of its component parts is true (inclusive OR). It is only false if both component parts are false.
Truth Table for
p ∨ q:pis T,qis T →p ∨ qis Tpis T,qis F →p ∨ qis Tpis F,qis T →p ∨ qis Tpis F,qis F →p ∨ qis F
conditional (→): read as "if… then". Expressed as "If p, then q," where
pis the hypothesis (antecedent) andqis the conclusion (consequent).The "promise" rule: Think of the statement like a promise (e.g., "If I bring pie, then I will bring ice cream"). The statement is false only when the promise is broken: you did the first part (brought pie,
pis T) but failed the second part (no ice cream,qis F). In all other cases, the conditional statement is considered true.Truth Table for
p → q:pis T,qis T →p → qis T (Promise kept)pis T,qis F →p → qis F (Promise broken)pis F,qis T →p → qis T (No pie, but still brought ice cream - promise not broken)pis F,qis F →p → qis T (No pie, no ice cream - promise not broken)
biconditional (↔): read as "if and only if" (often abbreviated as "iff"). This compound statement is true when both component parts have the same truth value (both true or both false). It implies that
(p → q) ∧ (q → p).Truth Table for
p↔q:pis T,qis T →p↔qis Tpis T,qis F →p↔qis Fpis F,qis T →p↔qis Fpis F,qis F →p↔qis T
3. truth tables
conjunction (and): true only when
pis T andqis T.disjunction (or): false only when
pis F andqis F.conditional (if/then): false only when the hypothesis is true and the conclusion is false (
T → F).biconditional: true when
pandqhave the same truth value (T↔TorF↔F).
module 2: sets
1. set notation
set: a well-defined collection of distinct objects, called elements, where the order of elements does not matter. "Well-defined" means it is possible to determine whether any given object belongs to the set or not.
Example: The set of even numbers less than 10 is
{2, 4, 6, 8}.
element (∈): an object belonging to a set.
Symbol:
x ∈ Ameans "x is an element of set A."Symbol:
x ∉ Ameans "x is not an element of set A."
notation types:
roster: lists all the elements of the set, typically enclosed in curly braces
{}.Example:
{1, 2, 3}or{red, blue, green}.set-builder: describes the properties that elements of the set must satisfy.
Example:
{\text{x \mid x is a natural number and x < 5}}which reads "the set of all x such that x is a natural number and x is less than 5."
standard sets:
N: natural numbers{1, 2, 3...}(positive integers, used for counting).W: whole numbers{0, 1, 2...}(natural numbers plus zero).I(orZ): integers{... -2, -1, 0, 1, 2 ...}(whole numbers and their negatives).R: real numbers (all numbers that can be represented on a continuous number line, including rational and irrational numbers).Q: rational numbers (numbers that can be expressed as a fractionp/qwherep, q ∈ Iandq ≠ 0).
2. subsets
universal set (U): the set of all elements being considered in a particular context. All other sets in that context are subsets of the universal set.
empty set (∅ or {}): the unique set containing no elements. It is a subset of every set.
Note:
{0}is not the empty set; it is a set containing one element, which is the number zero.
subset (⊆): Set B is a subset of set A (written
B ⊆ A) if every element in B is also in A. It is possible for B to be equal to A.Example: If
A = {1, 2, 3}andB = {1, 2}, thenB ⊆ A.Example:
{1, 2, 3} ⊆ {1, 2, 3}.
proper subset (⊂): Set B is a proper subset of set A (written
B ⊂ A) if B is a subset of A, but B is not equal to A. This means A must contain at least one element not found in B.Example: If
A = {1, 2, 3}andB = {1, 2}, thenB ⊂ A.
3. set operations & venn diagrams
complement (A'): the set of all elements in the universal set
Uthat are not in set A. It is defined asA' = {\text{x \mid x \in U and x \notin A}}.
Shutterstock
intersection (∩): the set of all elements common to both set A and set B (the overlap between the sets). It is defined as
A \cap B = {\text{x \mid x \in A and x \in B}}.
Shutterstock
union (∪): the set of all elements that belong to set A or set B (or both). It includes everything in both circles of a Venn diagram. It is defined as
A \cup B = {\text{x \mid x \in A or x \in B}}.
Shutterstock
difference (A - B): the set of all elements in set A that are not in set B. It is defined as
A - B = {\text{x \mid x \in A and x \notin B}}.
cartesian product (A × B): the set of all possible ordered pairs
(a, b)where the first elementais from set A and the second elementbis from set B.Example: if
A={1,2}andB={a,b}, thenA×B = {(1,a), (1,b), (2,a), (2,b)}.The cardinality (number of elements) of the Cartesian product is
.
module 3: real numbers
1. interval notation & inequalities
inequalities: used to describe a range of values for a variable.
and: use parentheses ( ) in interval notation to indicate that the endpoint is not included (open interval).≤or≥: use brackets [ ] in interval notation to indicate that the endpoint is included (closed interval).Infinity (
∞) and negative infinity (-∞) always use parentheses, as they are not true numbers that can be included.Example:
−5 < x ≤ −1becomes.Example:
becomes.Example:
x < 7becomes.
2. integer operations
addition:
Same signs = add the absolute values of the numbers and keep the common sign.
Different signs = subtract the smaller absolute value from the larger absolute value, and keep the sign of the number with the larger absolute value.
subtraction: "add the opposite" (keep-change-change). Change the subtraction sign to addition and change the sign of the second number. Then follow the rules for addition.
Example:
.Example:
.
multiplication/division:
Same signs = positive answer.
Different signs = negative answer.
Example:
.Example:
.
3. calculator cheat codes (ti-30xs multiview)
setup: set your mode to mathprint so fractions look like real fractions.
Press
mode→ arrow down to bottom → arrow right toMATHPRINT→enter.
fractions to decimals:
Type fraction → press
2ndthenf↔d(table button) →enter.
decimals to fractions:
Type decimal → press
2ndthenf↔d→enter.
mixed numbers to improper fractions:
Press
2ndthenU n/d(above the fraction key) → enter the whole number, numerator, and denominator.
simplify fractions:
Just typing the fraction and hitting
enterwill automatically reduce it to lowest terms.
4. solving equations
golden rule: whatever you do to one side of the equation, you must do to the other side to maintain equality.
reverse order of operations: to isolate the variable, you "undo" operations in the reverse order of PEMDAS (Parentheses, Exponents, Multiplication & Division, Addition & Subtraction).
Step 1: Undo addition/subtraction (by performing the inverse operation on both sides).
Step 2: Undo multiplication/division (by performing the inverse operation on both sides).
Example: To solve
Subtract 5 from both sides:
.Divide by 2 on both sides:
.
5. percents
percent: means "per 100" or "out of 100". It's a way to express a part of a whole as a fraction of 100.
conversions:
Percent to decimal: divide by 100 (move decimal 2 places left).
Example:
.Decimal to percent: multiply by 100 (move decimal 2 places right).
Example:
.
percent equation: use the proportion
or the equation(where percent is in decimal form).Example: What is
of?Using the equation:
.Using the proportion:
.