Skip to main content

Tautology

Tautology


A tautology is a compound statement that is true for all values of the individual statements.

The word tautology is derived from a Greek word where "tauto" means "same" and "logia" means "logic".
A compound statement is made with two simpler statements using some conditional words like 'and', 'or', 'not', 'if', 'then', and 'if and only if'.
For example, for any two given statements, such as x and y, (x ⇒ y) ∨ (y ⇒ x) is a tautology.


Simple examples of tautology are;

  • Either Subham goes home or Subham doesn't go home.
  • He is healthy or he is not healthy.
  • A number is odd or a number is not odd.

Tautology in Math

A tautology is a compound statement in Mathematics that always results in a value of Truth. No matter what the individual part consists of, the result in the tautology is always true. The opposite of tautology is the contradiction or fallacy that we will learn here.
It is easy to translate the tautologies of ordinary language into mathematical expressions with the help of logical symbols.
For example, I will give you 10 rupees or I will not give you 10 rupees.
Here, let us take:
P = I will give you 10 rupees
~P = I will not give you 10 rupees (Since it is the opposite statement of P)

These two individual statements are connected by the logical operator "OR", which is usually denoted by the symbol "".

Therefore, the above statement can be written as P ∨ ~P.

Now, we will check if the given statement produces a valid response.

Case 1: I will give 10 Rupees. In this case, the first statement is true and the second statement is false. Since the given statement is connected using the OR operator, it returns the true statement.

Case 2: I will not give 10 Rupees. In this case, the first statement is false and the second statement is true. Therefore, it produces a true statement.


What are the symbols used in tautology?

The important logic symbol used in tautology are:
  • AND (∧)
  • OR (∨)
  • NOT (~)
  • Negation (¬)
  • Implies (→)
  • If and only if (⇔)

Tautology Logic Symbols

Tautology uses different logical symbols to present compound statements.
These are the symbols and their meaning used in mathematical logic:

Symbols Meaning Representation
AND A ∧ B
OR A ∨ B
¬ Negation ¬A
~ NOT ~A
Implies or If-then A→B
If and only if A⇔B

Comments

Popular posts from this blog

Windows Key Shortcuts

List of common keyboard shortcuts that can be used with the Windows key: (Image by - Sharma Guides | Subham232330) 1. Windows Key + D: Show the Desktop 2. Windows Key + E: Open File Explorer 3. Windows Key + I: Open Settings 4. Windows Key + L: Lock the computer 5. Windows Key + R: Open the Run Dialog 6. Windows Key + S: Open the search bar 7. Windows Key + Tab: Open Task View 8. Windows Key + Ctrl + D: Create a new virtual desktop 9. Windows Key + Ctrl + Left or Right arrow: Switch between virtual desktops 10. Windows Key + M: Minimize all windows 11. Windows Key + Shift + M: Undo minimize all windows 12. Windows Key + Up Arrow: Maximize the current window 13. Windows Key + Down Arrow: Minimize the current window 14. Windows Key + Right Arrow: Snap the current window to the right 15. Windows Key + Left Arrow: Snap the current window to the left 16. Windows Key + P: Project to a second screen 17. Windows Key + Home: Minimize all but the active window 18. Windows Key + ...

four methods overload these methods

Write a program in java which has the following classes and methods:  Class : OverloadDemo Methods : test() Declare four methods with the same name “test()” and overload these methods class OverloadDemo{  public void test(){  System.out.println("It's a test method for null.");  }  public void test(int n){  System.out.println("It's a test method for displaying the int value "+n);  }  public void test(double d){  System.out.println("It's a test method for displaying the double value "+d);  }  public void test(String s){  System.out.println("It's a test method for displaying the String "+s);  }  }  class overClass{  public static void main(String[] args) {  OverloadDemo old = new OverloadDemo();  old.test();  old.test(12);  old.test(25.35);  old.test("Subham");  }  } OUTPUT: It's a test method for null. It's a test method for displaying the int value 12 It's a test method for ...

Normalization Types in DBMS

Normalization Types in DBMS First Normal Form (1NF) A relation will be 1NF if it contains an atomic value.  It states that an attribute of a table cannot hold multiple values. It must hold only single-valued attribute. First normal form disallows the multi-valued attribute, composite attribute, and their combinations. Example: Relation EMPLOYEE is not in 1NF because of multi-valued attribute EMP_PHONE. EMPLOYEE table: EMP_ID EMP_NAME EMP_PHONE EMP_STATE 14 John 7272826385, 9064738238 UP 20 Harry 8574783832 Bihar 12 Sam 7390372389, 8589830302 Punjab The decomposition of the EMPLOYEE table into 1NF has been shown below: EMP_ID EMP_NAME EMP_PHONE EMP_STATE 14 John 7272826385 UP 14 John 9064738238 UP 20 Harry 8574783832 Bihar 12 Sam 7390372389 Punjab 12 Sam 8589830302 Punjab Second Normal Form (2NF) In the 2NF, relational must be in 1NF.  In the second normal form, all non-key attributes are fully functional dependent on the primary key  Example: Let's assume, a school can ...