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

SQL Injection

SQL Injection The SQL Injection is a code penetration technique that might cause loss to our database. It is one of the most practiced web hacking techniques to place malicious code in SQL statements, via webpage input. SQL injection can be used to manipulate the application's web server by malicious users. SQL injection generally occurs when we ask a user to input their username/userID. Instead of a name or ID, the user gives us an SQL statement that we will unknowingly run on our database. For Example - we create a SELECT statement by adding a variable "demoUserID" to select a string. The variable will be fetched from user input (getRequestString). demoUserI = getrequestString("UserId"); demoSQL = "SELECT * FROM users WHERE UserId =" +demoUserId; Types of SQL injection attacks SQL injections can do more harm other than passing the login algorithms. Some of the SQL injection attacks include: Updating, deleting, and inserting the data: An attack can mo...

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 + ...

Authentication vs Authorization

Authentication vs Authorization - Authentication and authorization are the two words used in the security world. They might sound similar but are completely different from each other. Authentication is used to authenticate someone's identity, whereas authorization is a way to provide permission to someone to access a particular resource. These are the two basic security terms and hence need to be understood thoroughly. In this topic, we will discuss what authentication and authorization are and how they are differentiated from each other. What is Authentication? Authentication is the process of identifying someone's identity by assuring that the person is the same as what he is claiming for. It is used by both server and client. The server uses authentication when someone wants to access the information, and the server needs to know who is accessing the information. The client uses it when he wants to know that it is the same server that it claims to be. The authentication by t...