Analyzing the Setup
We are given a universal set of n(U)=140 students, each assigned a unique roll number from 1 to 140. We define three sets based on divisibility:
Math (M): Numbers divisible by 2.
Physics (P): Numbers divisible by 3.
* Chemistry (C): Numbers divisible by 5.
Our goal is to find the number of students who opted for none of these subjects, which is represented by n(U)−n(M∪P∪C).
Phase 1
The Individual Circles
First, we calculate the cardinality of each individual set using the floor function:
These values represent the total count of students in each subject, but they currently include students who are enrolled in multiple subjects.
Phase 2
The Overlapping Realities
To correct for multiple counting, we identify the intersections of these sets by finding the Least Common Multiple (LCM) of the divisors:
n(M∩P)=⌊lcm(2,3)140⌋=⌊6140⌋=23
n(P∩C)=⌊lcm(3,5)140⌋=⌊15140⌋=9
n(M∩C)=⌊lcm(2,5)140⌋=⌊10140⌋=14
Phase 3
The Triple Intersection and the Grand Formula
We must also account for the students enrolled in all three subjects, whose roll numbers are divisible by lcm(2,3,5)=30:
Now, we apply the Principle of Inclusion-Exclusion to find the union of the three sets:
n(M∪P∪C)=n(M)+n(P)+n(C)−[n(M∩P)+n(P∩C)+n(M∩C)]+n(M∩P∩C)
Substituting the calculated values:
n(M∪P∪C)=70+46+28−(23+9+14)+4
Final Calculation
The value 102 represents the number of students who opted for at least one subject. To find the number of students who opted for none, we subtract this from the universal set:
Result=n(U)−n(M∪P∪C)=140−102=38
The number of students who opted for none of the subjects is 38.