Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 3 fuera de 13 páginas
Resumen

Mathematics 1 (2DD40) Summary Q1 2021

Document preview thumbnail
Vista previa 3 fuera de 13 páginas

EN: Mathematics 1 (2DD40) is a course taught at Eindhoven University of Technology. It is a mandatory course for Bachelor Industrial Engineering students. The course is given in the first quartile of the first year. Mathematics 1 discusses the basics of logic, sets, linear algebra, series and probability. ---- NL: Wiskunde 1 (2DD40) is een vak die wordt gegeven op de Technische Universiteit Eindhoven. Het is een verplicht vak voor Bachelor Industrial Engineering studenten. Het vak wordt gegeven in het eerste kwartiel van het eerste jaar. Wiskunde 1 bespreekt de beginselen van logica, sets, lineaire algebra, series en waarschijnlijkheid.

Vista previa del contenido

Mathematics 1 (2DD40) Summary Q1
2021
Contents
Part I: Logic........................................................................................................................... 2
Part II: Sets ........................................................................................................................... 4
Part III: Linear algebra........................................................................................................... 6
Part IV: Series ....................................................................................................................... 9
Part V: Probability ............................................................................................................... 12




1
Mathematics 1 (2DD40) Summary Q1 2021 by Isabel Rutten

,Part I: Logic
There are different types of logic, we treat the main types proposition and predicate.
Proposition: statement which is either “true” or “false”
Basic statement: smallest unit that is true/false e.g. John sleeps
Composite statement: statements connected by and/or/not e.g. John sleeps and John does
not study. i.e. 𝑝: “John sleeps”. 𝑞: “John studies”. 𝑝 ∧ 𝑞: “John sleeps and John studies”
A proposition can have 2 truth values: False (also 0, F) and True (also 1, T).
Logical operators (also called connectives): ¬ not (negation), ∧ and (conjunction), ∨
inclusive or (disjunction), → implies (implication, from something false everything follows/the
truth follows from everything, (𝑝 → 𝑞) ↔ (¬𝑝 ∨ 𝑞) and (𝑝 → 𝑞) ↔ (¬𝑞 → ¬𝑝)), ↔ is
equivalent to (bi-implication, iff=if and only if, same as ← and → together). All are binary
except ¬ is unary. The priority of these signs is from first to last (¬ is strongest).
Truth table has left all possible values of the composing propositions and right the value of
the composite proposition, options increase exponentially with the number of propositions.
Tautology: (composite) statement that is true for all possible truth values of the variables
Equivalent: 2 statements are that if their truth columns in the truth table are equal
De Morgan: Negation of ∧ and ∨: ¬(𝑝 ∧ 𝑞) ↔ (¬𝑝 ∨ ¬𝑞) and ¬(𝑝 ∨ 𝑞) ↔ (¬𝑝 ∧ ¬𝑞).
Negation of →: ¬(𝑝 → 𝑞) ↔ (𝑝 ∧ ¬𝑞). Double negation cancels itself: ¬¬𝑝 ↔ 𝑝.
Every connective can be written with ∧, ∨ and ¬.




Fig. 1: Replacement rules Fig. 2: Step-by-step plan CNF and DNF
Every proposition can be written in Conjunctive Normal Form (CNF): of the form
(… ) ∧ … ∧ (… ) where between the brackets only ¬ and ∨ may appear.
Every proposition can be written in Disjunctive Normal Form (DNF): of the form
(… ) ∨ … ∨ (… ) where between the brackets only ¬ and ∧ may appear.
Incorrect reasonings: Do not make incorrect assumptions. An example does not suffice as
a proof. Correlation ≠ causation.
Paradox: 1 or more statements that lead to a contradiction.




2
Mathematics 1 (2DD40) Summary Q1 2021 by Isabel Rutten

, Predicate: quality / property, predicate logic is an extension of proposition logic with
variables (𝑥, 𝑦), predicates (descr. properties/relations), quantifiers, functions and constants.
Quantifiers: ∀ for all, universal quantifier; ∃ there exists, existential quantifier.
A quantifier binds a free variable, then it becomes a proposition, and is true or false.
Also: ∃! there exists exactly one.
Multiple quantifiers: e.g. ∀𝑥 ∃𝑦: 𝑦 < 𝑥 is true. Cannot interchange ∀ and ∃ without changing
the meaning of the statement, but multiple ∀’s or multiple ∃’s may be changed.
Negation of quantifiers:
∀𝑥: 𝜙(𝑥) where 𝜙(𝑥) is a certain property. Negation ¬(∀𝑥: 𝜙(𝑥)) means ∃𝑥: ¬𝜙(𝑥).
∃𝑥: 𝜙(𝑥) where 𝜙(𝑥) is a certain property. Negation ¬(∃𝑥: 𝜙(𝑥)) means ∀𝑥: ¬𝜙(𝑥).
To show that something does not hold for all x, 1 counterexample suffices. To show that
something is true, one needs a proof.
We can translate English sentences to the language of (predicate) logic like with 𝑀(𝑥, 𝑦): 𝑥 is
mother of 𝑦. E.g. ∀𝑦 ∃𝑥: 𝑀(𝑥, 𝑦) means everybody has a mother.
Quantifiers with extra condition: ∃𝑥 ∶ (𝑥 > 0) → ⋯ is the same as ∃𝑥 > 0 ∶ …
From something false everything follows.
Definition: agreement to give a certain name to something.
Theorem: (important) true statement/result
Corollary: theorem that (often quickly) follows from another.
Lemma: auxiliary theorem (preparation of more important result)
Proposition: theorem, but not very important
Conjecture: statement of which we suspect (but are not certain) that it is true
Defining a variable: : =, ≡
Hypothesis: statement that is preliminary assumed (assumption)
Proof techniques:
- Direct proof: based on the assumptions, results shown previously, etc.
- Counterexample: shows that statement cannot be proven / is false
- Proof with contraposition: instead of (𝐴) ⇒ (𝐵) we show ¬(𝐵) ⇒ ¬(𝐴)
- Proof of (𝐴) ↔ (𝐵) statement: show 2 parts: (𝐴) ⇒ (𝐵) and (𝐵) ⇒ (𝐴)
- Proof by contradiction: prove ¬(𝐴) by deriving a contradiction from (𝐴)




3
Mathematics 1 (2DD40) Summary Q1 2021 by Isabel Rutten

Información del documento

Estudio
Subido en
26 de octubre de 2021
Número de páginas
13
Escrito en
2021/2022
Tipo
Resumen
$5.33

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
IsabelRutten
4.4
(12)
Vendido
97
Seguidores
66
Artículos
21
Última venta
8 meses hace

Reseñas de compradores verificados



Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes