Lesson 2-1 Conditional Statements 1 Lesson 2-1 Conditional Statements.

Slides:



Advertisements
Presentasi serupa
Love comes to those who still hope although they’ve been disappointed,to those who still believe although they’ve been betrayed,to those who still love.
Advertisements

EXODUS 6:6-8 6 THEREFORE SAY TO THE CHILDREN OF ISRAEL: ‘I AM THE LORD; I WILL BRING YOU OUT FROM UNDER THE BURDENS OF THE EGYPTIANS, I WILL RESCUE YOU.
2. Introduction to Algorithm and Programming
Cultural Determinants of Schemas
STRUCTURAL CONTROL STATEMENT  If  If…..else….  If ….elseif…else.
Chapter 1-a FLOW CHART.
Korelasi Linier KUSWANTO Korelasi Keeratan hubungan antara 2 variabel yang saling bebas Walaupun dilambangkan dengan X dan Y namun keduanya diasumsikan.
K-Map Using different rules and properties in Boolean algebra can simplify Boolean equations May involve many of rules / properties during simplification.
1 DATA STRUCTURE “ STACK” SHINTA P STMIK MDP APRIL 2011.
Presented By : Group 2. A solution of an equation in two variables of the form. Ax + By = C and Ax + By + C = 0 A and B are not both zero, is an ordered.
Dasar Pemrograman Java Pertemuan 2 Pemrograman Berbasis Obyek.
Menulis Kolom  Kolom adalah opini atau artikel. Tidak seperti editorial, kolom memiliki byline.  Kolom Biasanya ditulis reguler. Biasanya mingguan atau.
1 Pertemuan 09 Kebutuhan Sistem Matakuliah: T0234 / Sistem Informasi Geografis Tahun: 2005 Versi: 01/revisi 1.
Floating Point (Multiplication)
PERTEMUAN KE-6 UNIFIED MODELLING LANGUAGE (UML) (Part 2)
Verb Tense Tense denotes the time of the action indicated by a verb. The time is not always the same as that indicated by the name of the tense.
1 Pertemuan 5 Komunikasi antar Proses / Interprocess Communication (IPC) Matakuliah: T0316/sistem Operasi Tahun: 2005 Versi/Revisi: 5 OFFCLASS01.
1 Pertemuan 11 Function dari System Matakuliah: M0446/Analisa dan Perancangan Sistem Informasi Tahun: 2005 Versi: 0/0.
9.3 Geometric Sequences and Series. Objective To find specified terms and the common ratio in a geometric sequence. To find the partial sum of a geometric.
OPERATOR DAN FUNGSI MATEMATIK. Operator  Assignment operator Assignment operator (operator pengerjaan) menggunakan simbol titik dua diikuti oleh tanda.
The following short quiz consists of 4 questions and tells whether you are qualified to be a "professional". The questions are not that difficult, so.
Jartel, Sukiswo Sukiswo
MATRIX Concept of Matrix Matrik.
KOMUNIKASI DATA Materi Pertemuan 3.
Induksi Matematika.
07/11/2017 BARISAN DAN DERET KONSEP BARISAN DAN DERET 1.
Rekayasa Perangkat Lunak Class Diagram
Cartesian coordinates in two dimensions
Konsep pemrograman LOOP
Technology And Engineering TECHNOLOGY AND ENGINERRING
Cartesian coordinates in two dimensions
GROUP 12: ARINI NUROTUL HUDA
Creatif by : Nurlia Enda
Pengujian Hipotesis (I) Pertemuan 11
Regresi.
ENGINEERING PLUMBING AND SANITATION
CLASS DIAGRAM.
Dasar-Dasar Pemrograman
Presentasi Statistika Dasar
Bahasa Pemprograman Dasar Pertemuan 4
Dasar Logika Matematika
BILANGAN REAL BILANGAN BERPANGKAT.
Algorithms and Programming Searching
Two-and Three-Dimentional Motion (Kinematic)
REAL NUMBERS EKSPONENT NUMBERS.
Rectangles, Rhombuses, and Squares
FACTORING ALGEBRAIC EXPRESSIONS
As If/As Though.
GEOMETRY GROUP 7 Loading... TRIANGLE Classifying Triangles The Pythagorean Theorem Special MATERI Classifying Triangles TRIANGLE The Pythagorean.
TRANSLATION Kadaruddin, S.Pd., M.Pd.
Master data Management
Pertemuan 4 CLASS DIAGRAM.
BAHASA INGGRIS Expressing Sympathy Expressing Compliment
MEASURING BY MEANS OF MEASURE MECHANIC OF PRECISION
SAHAM GRUP ASTRA PERIODE JULI 2009 S.D. MARET 2010
How You Can Make Your Fleet Insurance London Claims Letter.
How Can I Be A Driver of The Month as I Am Working for Uber?
Don’t Forget to Avail the Timely Offers with Uber
Takes Rides for Never Ending Fun pacehire.co.uk. It’s still Time to Make Fun Before the Holidays pacehire.co.uk.
Dasar Logika Matematika
Group 3 About causal Conjunction Member : 1. Ahmad Fandia R. S.(01) 2. Hesti Rahayu(13) 3. Intan Nuraini(16) 4. Putri Nur J. (27) Class: XI Science 5.
Algoritma & Pemrograman 1 Achmad Fitro The Power of PowerPoint – thepopp.com Chapter 3.
SIMILES. The comparison is carried out using the words ‘like’ as etc. Example : 1. as free as a bird. The word ‘free’ is compared with the word ‘bird’
Right, indonesia is a wonderful country who rich in power energy not only in term of number but also diversity. Energy needs in indonesia are increasingly.
"More Than Words" Saying I love you, Is not the words, I want to hear from you, It's not that I want you, Not to say but if you only knew, How easy, it.
Media Pembelajaran PATHWAY TO ENGLISH Kelompok Peminatan Untuk SMA/MA Kelas X.
Quality Health Safety and Environment – QHSE – is an integral part of the way ITS does business PELINDUNG PENGLIHATAN Mata anda adalah satu bagian tubuh.
Draw a picture that shows where the knife, fork, spoon, and napkin are placed in a table setting.
Wednesday/ September,  There are lots of problems with trade ◦ There may be some ways that some governments can make things better by intervening.
Transcript presentasi:

Lesson 2-1 Conditional Statements 1 Lesson 2-1 Conditional Statements

Lesson 2-1 Conditional Statements 2 Conditional Statement Definition:A conditional statement is a statement that can be written in if-then form. “If _____________, then ______________.” Example:If your feet smell and your nose runs, then you're built upside down. Continued……

Lesson 2-1 Conditional Statements 3 Conditional Statement - continued Conditional Statements have two parts: The hypothesis is the part of a conditional statement that follows “if” (when written in if-then form.) The conclusion is the part of an if-then statement that follows “then” (when written in if-then form.) The hypothesis is the given information, or the condition. The conclusion is the result of the given information.

Lesson 2-1 Conditional Statements 4 Conditional statements can be written in “if-then” form to emphasize which part is the hypothesis and which is the conclusion. Writing Conditional Statements Hint: Turn the subject into the hypothesis. Example 1:Vertical angles are congruent.can be written as... If two angles are vertical, then they are congruent. Conditional Statement: Example 2:Seals swim. can be written as... Conditional Statement: If an animal is a seal, then it swims.

Lesson 2-1 Conditional Statements 5 If …Then vs. Implies Two angles are vertical implies they are congruent. Another way of writing an if-then statement is using the word implies. If two angles are vertical, then they are congruent.

Lesson 2-1 Conditional Statements 6 Conditional Statements can be true or false: A conditional statement is false only when the hypothesis is true, but the conclusion is false. A counterexample is an example used to show that a statement is not always true and therefore false. If you live in Virginia, then you live in Richmond.Statement: Counterexample:I live in Virginia, BUT I live in Glen Allen. Is there a counterexample? Therefore (  ) the statement is false. Yes !!!

Lesson 2-1 Conditional Statements 7 Symbolic Logic Symbols can be used to modify or connect statements. Symbols for Hypothesis and Conclusion: Hypothesis is represented by “p”. Conclusion is represented by “q”. if p, then q or p implies q Continued…..

Lesson 2-1 Conditional Statements 8 Symbolic Logic - continued if p, then q or p implies q is used to represent p  q Example: p: a number is prime q: a number has exactly two divisors If a number is prime, then it has exactly two divisors. p  q: Continued…..

Lesson 2-1 Conditional Statements 9 is used to represent the word “not” ~ Symbolic Logic - continued Example 1:p: the angle is obtuse The angle is not obtuse ~p means that the angle could be acute, right, or straight. ~p: Note: Example 2:p: I am not happy ~p: I am happy ~p took the “not” out- it would have been a double negative (not not)

Lesson 2-1 Conditional Statements 10 is used to represent the word Symbolic Logic - continued “and”  Example: p: a number is even q: a number is divisible by 3 A number is even and it is divisible by 3. i.e. 6,12,18,24,30,36,42... p  q:

Lesson 2-1 Conditional Statements 11 is used to represent the word Symbolic Logic- continued “or”  Example: p: a number is even q: a number is divisible by 3 p  q: A number is even or it is divisible by 3. i.e. 2,3,4,6,8,9,10,12,14,15,...

Lesson 2-1 Conditional Statements 12 is used to represent the word “therefore” Symbolic Logic - continued  Example: Therefore, the statement is false.  the statement is false

Lesson 2-1 Conditional Statements 13 Forms of Conditional Statements Converse: Switch the hypothesis and conclusion (q  p) p  q If two angles are vertical, then they are congruent. q  p If two angles are congruent, then they are vertical. Continued…..

Lesson 2-1 Conditional Statements 14 Forms of Conditional Statements Inverse: State the opposite of both the hypothesis and conclusion. (~p  ~q) p  q : If two angles are vertical, then they are congruent. ~p  ~q: If two angles are not vertical, then they are not congruent.

Lesson 2-1 Conditional Statements 15 Forms of Conditional Statements Contrapositive: Switch the hypothesis and conclusion and state their opposites. ( ~q  ~p) p  q : If two angles are vertical, then they are congruent. ~q  ~p: If two angles are not congruent, then they are not vertical.

Lesson 2-1 Conditional Statements 16 Forms of Conditional Statements Contrapositives are logically equivalent to the original conditional statement. If p  q is true, then  q  p is true. If p  q is false, then  q  p is false.

Lesson 2-1 Conditional Statements 17 Biconditional When a conditional statement and its converse are both true, the two statements may be combined. Use the phrase if and only if (sometimes abbreviated: iff) Statement: If an angle is right then it has a measure of 90 . Converse: If an angle measures 90 , then it is a right angle. Biconditional: An angle is right if and only if it measures 90 .