fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@@ -0,0 +1,8 @@
---
title: Conditional and Biconditional Statements
---
## Conditional and Biconditional Statements
**Conditional statement:** "if". If one thing is true, then something else is true or can happen. *Example:* if it rains right now, then the ground will be wet. *However*, the converse ("if the ground is wet, then it is raining") is not necessarily true.
___Bi___**conditional statement:** "if and only if". If one thing is true, then something else is true; and if that something else is true, then that the one thing is true. Another way to think about it is that two things are either both true, or both false (not one true and the other false). *Example:* A square has an area of 16 cubic meters if and only if its sides are both 4 meters long.