- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Explain the concept of set in TOC?
A set is an unordered collection of objects or an unordered collection of elements. Sets are always written with curly braces {}, and the elements in the set are written within the curly braces.
Examples
The set {a, b, c} has elements a, b, and c.
The sets {a, b, c} and {b, c, b, a, a} are the same since order does not matter in a set and since redundancy also does not count.
The set {a} has element a. Note that {a} and a are different things; {a} is a set with one element a.
The set {xn: n = 1, 2, 3, . . .} consists of x, xx, xxx, . . ..
The set of even numbers {0, 2, 4, 6, 8, 10, 12, . . .} is {2n where n = 0, 1, 2, . . .}. In general, note that 0 is an even number.
The set of positive even numbers {2, 4, 6, 8, 10, 12, . . .} is {2n where n =1, 2, 3, . . .}.
The set of odd numbers {1, 3, 5, 7, 9, 11, 13, . . .} is {2n + 1where n =0, 1, 2, . . .}
The basic relations in the set can be characterized as −
A set L1 is a subset of set L if and only if every element of L1 is also an element of L.
A set L1 is a proper subset of set L if and only if every element of L1 is also elements of L, but there are few elements in L that are not elements of L1.
The intersection of two sets L and M is the set X of all elements x such that x is in L and x is in M.
The union of two sets L and M is the set Y of all elements y such that y is in L or y is in M, or both.
Example
Consider an example that how to work on regular sets by performing union operation on a set −
The given set is X. we have to prove that (X)* = (X*)*. Let, the language accepted by (X*)* be L((X*)*) . . L((X*)*) = L(X*)^0 U L(X*)^1 U L(X*)^2 U L(X*)^3 ....... = Ɛ U L(X*) U (L(X*) U L(X*)) U ( L(X*) U L(X*) U L(X*) ) ............. = L(X*) U (L(X*) U L(X*)) U ( L(X*) U L(X*) U L(X*) ) ............. [ since Ɛ U A =A ] = L(X*) Since both languages are same, it is proved that − (X)* = (X*)*.
- Related Articles
- Explain the concept of derivation in TOC
- Explain the concept of grammar in TOC
- Explain the concept of strings in TOC?
- Explain the concept of state elimination method in TOC
- Explain Set relations and operations in TOC?
- Explain the concept of amalgamation
- Explain the power of an alphabet in TOC.
- Explain the various applications of automata in TOC
- Explain the concept of depreciation in accounting.
- Explain the concept of depletion in accounting.
- Explain the concept of delegates in C#
- Explain the concept of takeover in business
- Explain the concept of Normalization in DBMS?
- Explain the concept of recoverability in DBMS
- Explain the concept of indexing in DBMS
