Binary Operations โ revision notes (CBSE Class 12)
Binary operations generalise +, โ, ร, รท into a single framework and are tested in CBSE as short 2โ4 mark checks of properties on a given operation โ. The definitions are quick to apply.
Definition
A binary operation โ on a set A is a function โ : A ร A โ A. It takes two elements of A and returns an element of A. The crucial requirement is closure: a โ b must lie in A for all a, b โ A.
Key properties
- Commutative: a โ b = b โ a for all a, b.
- Associative: (a โ b) โ c = a โ (b โ c) for all a, b, c.
- Identity element e: a โ e = e โ a = a for all a. (At most one exists.)
- Inverse of a: an element b with a โ b = b โ a = e. (Needs identity to exist first.)
Worked example
On โ, define a โ b = a + b โ ab.
- Commutative: a + b โ ab = b + a โ ba โ
- Identity e: a + e โ ae = a โ e(1 โ a) = 0 โ e = 0. So identity is 0.
- Inverse of a: a + b โ ab = 0 โ b = a/(a โ 1), valid for a โ 1.
Standard results
- On โค, subtraction is a binary operation but neither commutative nor associative.
- On โ, subtraction is NOT even a binary operation (not closed: 2 โ 5 โ โ).
Exam Tricks & Tips
- ๐ฏ First always check closure โ if a โ b can leave A, it's not a binary operation at all.
- ๐ฏ Identity is unique; solve a โ e = a to find it.
- ๐ฏ Find inverses only after confirming the identity exists.
- ๐ฏ A composition/operation table (Cayley table) makes commutativity visible: symmetry across the diagonal.
- ๐ฏ Subtraction and division fail associativity and commutativity โ quick counter-examples score marks.
- โ Common mistake: hunting for inverses before establishing the identity element โ inverse is defined relative to e.
Expected exam pattern
2โ4 marks: verify whether a given โ is commutative/associative, find its identity and the inverse of an element.
Quick recap
Binary operation = closed map A ร A โ A. Test commutativity, associativity; find the unique identity e via a โ e = a, then inverses via a โ b = e.
Binary Operations โ Flashcards (CBSE Class 12)
Cover the answer, recall, then check. 11 cards on binary operations.
Q1. Define a binary operation on set A.
A1. A function โ : A ร A โ A; it must be closed (a โ b โ A always).
Q2. What is the closure property?
A2. For all a, b โ A, the result a โ b stays inside A.
Q3. State commutativity for โ.
A3. a โ b = b โ a for all a, b โ A.
Q4. State associativity for โ.
A4. (a โ b) โ c = a โ (b โ c) for all a, b, c.
Q5. Define the identity element e.
A5. e with a โ e = e โ a = a for every a. It is unique if it exists.
Q6. Define the inverse of a.
A6. An element b with a โ b = b โ a = e (requires an identity e).
Q7. For a โ b = a + b โ ab on โ, find the identity.
A7. e = 0, since a + 0 โ 0 = a.
Q8. For that operation, find the inverse of a.
A8. b = a/(a โ 1), valid for a โ 1.
Q9. Is subtraction on โ a binary operation?
A9. No โ not closed (e.g. 2 โ 5 = โ3 โ โ).
Q10. Is subtraction on โค commutative or associative?
A10. Neither: 3 โ 5 โ 5 โ 3, and (8โ3)โ2 โ 8โ(3โ2).
Q11. How does a Cayley table reveal commutativity?
A11. The table is symmetric about its main diagonal.
Binary Operations
Addition takes two numbers and returns one number. So does multiplication, and so does "the larger of a and b". Strip away the specifics and you get a binary operation โ the abstract idea behind all of arithmetic, and the foundation of algebraic structures.
Definition: A binary operation โ on a set A is a function โ : A ร A โ A. It takes an ordered pair (a, b) of elements of A and returns a single element a โ b that must also lie in A. This last requirement is called closure and is built into the definition.
Properties a binary operation may have
- Commutative: a โ b = b โ a for all a, b โ A. (Addition and multiplication are; subtraction and division are not.)
- Associative: (a โ b) โ c = a โ (b โ c). (Addition, multiplication are; subtraction is not.)
- Identity element e: an element with a โ e = e โ a = a for all a. (0 for +, 1 for ร.) An identity, if it exists, is unique.
- Inverse of a: an element b with a โ b = b โ a = e. (โa for +, 1/a for ร when a โ 0.) Inverses require an identity to exist first.
WHY these properties? They are the exact axioms that upgrade a bare set-with-operation into richer structures (groups, rings). Recognising them trains the algebraic thinking the whole syllabus rests on.
Reading an operation table
For a finite set, โ can be shown as a Cayley (composition) table. Quick diagnostics:
- Closure: every entry lies in the set.
- Commutativity: the table is symmetric about its main diagonal.
- Identity: some row (and matching column) reproduces the header exactly โ that header element is e.
Worked example
Question: On โ (rationals), define a โ b = a + b โ ab. Check closure, commutativity, associativity, find the identity, and find the inverse of a.
Solution:
Step 1 โ Closure: sum and product of rationals are rational โน a + b โ ab โ โ. โ
Step 2 โ Commutative: a โ b = a + b โ ab = b + a โ ba = b โ a. โ
Step 3 โ Associative: (a โ b) โ c = (a+bโab) + c โ (a+bโab)c = a + b + c โ ab โ bc โ ca + abc. By symmetry a โ (b โ c) gives the same expression. โ
Step 4 โ Identity e: need a + e โ ae = a โน e(1 โ a) = 0 for all a โน e = 0. So identity is 0.
Step 5 โ Inverse of a: need a + b โ ab = 0 โน b(1 โ a) = โa โน b = a/(a โ 1), valid for a โ 1.
Conclusion: โ is closed, commutative, associative, with identity 0; every a โ 1 has inverse a/(a โ 1).
Exam application
NCERT and boards love custom operations like a โ b = HCF(a,b), a โ b = min(a,b), or a โ b defined via a table, then ask you to test properties or find e and inverses. The moves are always the same four checks. Real-world echoes: matrix multiplication (associative, non-commutative), function composition (a binary operation on the set of functions), and modular arithmetic in cryptography.
Mnemonic โ "CIA(C)": for a rich structure check Closure, Identity, Associativity, Commutativity (and inverses once identity is found).
Forgetting closure. Students test commutativity and associativity but never confirm a โ b stays inside A. Example: subtraction is not a binary operation on โ because 3 โ 5 = โ2 โ โ. Also, commutativity and associativity are independent โ one can hold without the other; never assume one from the other.
- โ- A binary operation โ on A is a map A ร A โ A; closure is mandatory.
- โ- Commutative: a โ b = b โ a. Associative: brackets don't matter.
- โ- Identity e satisfies a โ e = e โ a = a and is unique if it exists.
- โ- Inverse of a satisfies a โ aโปยน = e; needs an identity first.
- โ- In a Cayley table: symmetry โน commutative; a header-reproducing row โน identity.
- โ- Binary operations abstract "+, ร, min, HCF" into one framework.
- โ- Always verify closure before anything else.
- โ- Identity and inverses build toward groups โ the language of higher algebra.
Binary Operations โ Formula Sheet
Key formulas / definitions
- Binary operation โ on A: a map A ร A โ A (closure: a โ b โ A).
- Commutative: a โ b = b โ a.
- Associative: (a โ b) โ c = a โ (b โ c).
- Identity element e: a โ e = e โ a = a.
- Inverse of a: a โ b = b โ a = e (b = aโปยน).
- โ- Closure: result stays in A.
- โ- Identity e satisfies a โ e = a.
- โ- Inverse: a โ aโปยน = e.
A binary operation combines two elements to give a third; properties like identity and inverse require closure first.
Binary Operations โ Worked Example
Worked Example
Problem: A binary operation * is defined on the set of real numbers by a * b = a + b โ ab. (a) Compute 2 * 3. (b) Determine whether * is commutative.
Solution:
Step 1 โ Apply the definition to compute 2 * 3:
2 * 3 = 2 + 3 โ (2)(3) = 5 โ 6 = โ1.
Step 2 โ Recall the meaning of commutativity: * is commutative if a * b = b * a for all a, b.
Step 3 โ Compute a * b and b * a in general:
a * b = a + b โ ab.
b * a = b + a โ ba = a + b โ ab (since addition and multiplication are commutative).
Step 4 โ Compare. Both expressions are identical (a + b โ ab), so a * b = b * a for all real a, b.
Answer: (a) 2 * 3 = โ1; (b) the operation * is commutative.
- โ- A binary operation combines two elements of a set to give another element of the same set.
- โ- Commutative: a * b = b * a; Associative: (a * b) * c = a * (b * c).
- โ- An identity element e satisfies a * e = e * a = a.