Vidhyapath ← EAMCET Hub
FREE vidhyapath.com β†—
Chapter progress
Layer 1 of 5
MathematicsLow Weightage β˜…β˜…Class 11

Mathematical Reasoning

Statements, logical connectives (AND, OR, NOT, IMPLIES), truth tables, converse, inverse, contrapositive, and valid arguments β€” expect 1–2 direct EAPCET questions.

1–2Questions in EAPCET
~1%Paper Weightage
6Core Concepts
2Mistake Traps

Concept Core

Logical statements, connectives, truth tables, and argument validity β€” the complete logic framework.

Statements and Logical Connectives

A statement (proposition) is a declarative sentence that is either true (T) or false (F), not both.

ConnectiveSymbolRead asTrue when
Negation¬p (or ~p)Not pp is false
Conjunctionp ∧ qp AND qBoth p, q are true
Disjunctionp ∨ qp OR qAt least one is true
Implicationp β†’ qIf p then qNot (p true, q false)
Biconditionalp ↔ qp if and only if qp, q have same truth value
Truth Table for Implication p β†’ q
pqp β†’ q
TTT
TFF
FTT
FFT

The implication p β†’ q is false only when p is true and q is false. A false premise makes the implication vacuously true.

Related Conditional Statements
For the implication p β†’ q: Converse: q β†’ p Inverse: Β¬p β†’ Β¬q Contrapositive: Β¬q β†’ Β¬p

Key equivalences:

β€’ p β†’ q ≑ Β¬q β†’ Β¬p (contrapositive is logically equivalent to the original)

β€’ p β†’ q ≑ Β¬p ∨ q

β€’ Converse and inverse are equivalent to each other, but NOT to the original.

Tautology, Contradiction, and Contingency

Tautology: Always true regardless of truth values of components. Example: p ∨ ¬p (always T).

Contradiction (Fallacy): Always false. Example: p ∧ ¬p (always F).

Contingency: Sometimes true, sometimes false. Most statements.

De Morgan's Laws:

Β¬(p ∧ q) ≑ Β¬p ∨ Β¬q Β¬(p ∨ q) ≑ Β¬p ∧ Β¬q
Valid Arguments β€” Modus Ponens & Tollens

Modus Ponens: If p β†’ q is true and p is true, then q must be true.

Modus Tollens: If p β†’ q is true and q is false, then p must be false.

Hypothetical Syllogism: p β†’ q and q β†’ r β†’ therefore p β†’ r.

An argument is valid when the conclusion logically follows from the premises (regardless of whether premises are actually true).

Quantifiers

Universal quantifier (βˆ€): "For all" β€” βˆ€x, P(x) means P is true for every x in the domain.

Existential quantifier (βˆƒ): "There exists" β€” βˆƒx, P(x) means P is true for at least one x.

Negation of quantifiers:

Β¬(βˆ€x, P(x)) ≑ βˆƒx, Β¬P(x) [not all β†’ some are not] Β¬(βˆƒx, P(x)) ≑ βˆ€x, Β¬P(x) [none β†’ all are not]

Formula Vault

Logic formulas and equivalences for EAPCET.

p β†’ q (Implication)
False ONLY when p=T, q=F
Vacuously true when p is false
Contrapositive
p β†’ q ≑ Β¬q β†’ Β¬p
Logically equivalent to original
Implication as Disjunction
p β†’ q ≑ Β¬p ∨ q
Very useful for truth tables
De Morgan 1
Β¬(p ∧ q) ≑ Β¬p ∨ Β¬q
Negation of AND = OR of negations
De Morgan 2
Β¬(p ∨ q) ≑ Β¬p ∧ Β¬q
Negation of OR = AND of negations
Tautology
p ∨ Β¬p ≑ T (always)
Law of excluded middle
Contradiction
p ∧ Β¬p ≑ F (always)
Law of non-contradiction
Biconditional
p ↔ q ≑ (pβ†’q) ∧ (qβ†’p)
True when p and q have same TV

Worked Examples

5 problems β€” truth tables, contrapositive, De Morgan, tautology, and a classic trap.

EasyWhen is p β†’ q false? Give an example.β–Ύ
State the condition under which the implication p β†’ q is false, with an example.
1
p β†’ q is false ONLY when p is TRUE and q is FALSE.
2
Example: 'If it rains, the ground is wet.' (p: it rains; q: ground is wet)
3
False case: it IS raining (p=T) but the ground is NOT wet (q=F) β€” this contradicts the implication.
4
All other cases (p=F or q=T) make the implication true.
βœ“  p β†’ q is false only when p is TRUE and q is FALSE
EasyWrite the contrapositive of: 'If n is even, then nΒ² is even'β–Ύ
Write the contrapositive of 'If n is even, then nΒ² is even.'
1
Contrapositive of p β†’ q is Β¬q β†’ Β¬p.
2
p: 'n is even'; q: 'nΒ² is even'
3
Β¬q: 'nΒ² is not even (nΒ² is odd)'; Β¬p: 'n is not even (n is odd)'
4
Contrapositive: 'If nΒ² is odd, then n is odd'
βœ“  Contrapositive: 'If nΒ² is odd, then n is odd'
MediumNegate: 'All students passed the exam'β–Ύ
Write the negation of the statement 'All students passed the exam.'
1
'All students passed' = βˆ€x, P(x) where P(x) = 'student x passed'
2
Negation: Β¬(βˆ€x, P(x)) = βˆƒx, Β¬P(x)
3
In plain English: 'There exists at least one student who did NOT pass the exam'
βœ“  Negation: 'There exists a student who did not pass the exam'
EAPCET LevelVerify De Morgan's law: Β¬(p ∧ q) ≑ Β¬p ∨ Β¬q using truth tableβ–Ύ
Construct a truth table to verify Β¬(p ∧ q) ≑ Β¬p ∨ Β¬q.
1
Build the truth table for all 4 combinations of T/F for p and q:
2
(T,T): p∧q=T β†’ Β¬(p∧q)=F; Β¬p∨¬q = F∨F = F βœ“
3
(T,F): p∧q=F β†’ Β¬(p∧q)=T; Β¬p∨¬q = F∨T = T βœ“
4
(F,T): p∧q=F β†’ Β¬(p∧q)=T; Β¬p∨¬q = T∨F = T βœ“
5
(F,F): p∧q=F β†’ Β¬(p∧q)=T; Β¬p∨¬q = T∨T = T βœ“
6
Both columns are identical β†’ De Morgan's law verified.
βœ“  De Morgan's Law verified β€” both sides have identical truth values in all 4 cases
Trap QuestionThe converse of p→q is logically equivalent to p→q — True or False?▾
Is the converse (q→p) always logically equivalent to the original implication (p→q)?
1
The trap: Students confuse converse with contrapositive.
2
Contrapositive (¬q→¬p): IS logically equivalent to p→q (same truth values in all cases).
3
Converse (q→p): is NOT logically equivalent to p→q in general.
4
Example: 'If it rains, the ground is wet' (p→q). Converse: 'If the ground is wet, it rained' — can be false (someone may have sprinkled water).
5
So converse can be false even when the original is true.
βœ“  False β€” converse (qβ†’p) is NOT equivalent to pβ†’q; only the CONTRAPOSITIVE (Β¬qβ†’Β¬p) is equivalent

Mistake DNA

2 logic errors from EAPCET distractor analysis.

πŸ”„
Converse ≑ Original Implication
Converse (q→p) and inverse (¬p→¬q) are equivalent to each other, but NOT to the original implication p→q.
❌ Wrong
pβ†’q ≑ qβ†’p (converse) βœ— (can have different truth values!)
βœ“ Correct
pβ†’q ≑ Β¬qβ†’Β¬p βœ“ (contrapositive) qβ†’p ≑ Β¬pβ†’Β¬q (converse≑inverse) Converse β‰  original
Only the contrapositive (¬q→¬p) is logically equivalent to p→q. Converse and inverse are equivalent to each other but form a different equivalence class from the original.
πŸ“Š
p→q is False When p is False
When p is false, the implication p→q is VACUOUSLY TRUE (regardless of q). This is the hardest logical concept to accept intuitively.
❌ Wrong
p is False, q is True: pβ†’q is False βœ— (vacuous truth!)
βœ“ Correct
pβ†’q is False ONLY when: p=T AND q=F βœ“ All other cases: pβ†’q = T βœ“ (including Fβ†’T and Fβ†’F)
Think of it as a promise: 'If it rains, I will carry an umbrella.' If it does NOT rain, I cannot break the promise β€” so it's vacuously true regardless of whether I carry an umbrella.

Chapter Intelligence

Mathematical reasoning is a quick-win chapter β€” learn truth tables and contrapositive once, score directly.

EAPCET Weightage (2019–2024)
Implication and truth table
~6
Contrapositive vs converse
~6
De Morgan's laws
~5
Negation of quantified statements
~4
Tautology and contradiction
~3
High-Yield PYQ Patterns
When is p→q false?Write contrapositive of given statementIdentify tautology/contradictionNegate a universally quantified statementDe Morgan's law applicationConverse vs contrapositive distinctionIdentify valid argument form
Exam Strategy
  • p β†’ q is false ONLY when p=T and q=F. All other combinations give true. This is the #1 tested fact in this chapter.
  • Contrapositive (Β¬q β†’ Β¬p) is equivalent to the original. Converse (q β†’ p) is NOT equivalent. Don't confuse them.
  • De Morgan's: Β¬(p∧q) = Β¬p∨¬q; Β¬(p∨q) = Β¬p∧¬q. These are directly tested β€” just negate and flip AND↔OR.
  • Negating quantifiers: Β¬(βˆ€x, P(x)) = βˆƒx, Β¬P(x). "Not all students passed" = "Some student did not pass." Quick and direct.
Share

💡 Suggestions & Feedback

We read every message

To keep feedback accountable, we verify your email before accepting messages.

Already a student? Log in to skip this step.