เซต เป็นแนวคิดพื้นฐานทางคณิตศาสตร์ที่ใช้อธิบายกลุ่มของสิ่งต่าง ๆ ที่มีลักษณะร่วมกัน เซตเป็นรากฐานสำคัญของวิชาคณิตศาสตร์ทุกสาขา

A set is one of the most fundamental concepts in mathematics — a well-defined collection of distinct objects. Sets form the foundation of nearly every branch of mathematics.

1

📖 ความหมายและการเขียนเซต / Meaning & Notation

ความหมายของเซตและวิธีการเขียน

ภาษาไทย

เซต คือกลุ่มของสิ่งต่าง ๆ ที่กำหนดไว้อย่างชัดเจน สิ่งแต่ละอย่างในเซตเรียกว่า สมาชิก (Element) หรือ อิลิเมนต์

กฎสำคัญของเซต:

  • สมาชิกแต่ละตัวต้องชัดเจน ไม่ซ้ำกัน
  • เซตต้องสามารถระบุได้อย่างแน่นอนว่าอะไรเป็นสมาชิกหรือไม่
  • ลำดับของสมาชิกในเซตไม่มีความสำคัญ
English

A set is a well-defined collection of distinct objects. Each object in a set is called an element or member.

Key rules of sets:

  • Each element must be distinct (no duplicates)
  • It must be clear whether any given object belongs to the set
  • The order of elements in a set does not matter

วิธีการเขียนเซต / Notations for Sets

1
แบบแจกแจงสมาชิก
Roster / Tabular Method
A = {1, 2, 3, 4, 5}
เขียนสมาชิกทุกตัวในวงเล็บปีกกา คั่นด้วยเครื่องหมายจุลภาค List all elements inside curly braces, separated by commas.
2
แบบบอกเงื่อนไข
Set-Builder / Rule Method
A = {x | x เป็นจำนวนเต็มบวก, x ≤ 5}
บอกเงื่อนไขที่สมาชิกต้องมี โดยใช้สัญลักษณ์ { x | เงื่อนไข } Describe elements using a rule or condition with { x | condition }.
เป็นสมาชิก / Element of
3 ∈ {1, 2, 3, 4} "3 เป็นสมาชิกของเซต" "3 is an element of the set"
ไม่เป็นสมาชิก / Not an Element of
7 ∉ {1, 2, 3, 4} "7 ไม่เป็นสมาชิกของเซต" "7 is not an element of the set"

🔍 ทดสอบสมาชิก / Membership Checker

เซต A = {2, 4, 6, 8, 10} — ใส่ตัวเลขและดูว่าเป็นสมาชิกหรือไม่ Set A = {2, 4, 6, 8, 10} — enter a number and check membership.

2

🗂️ ประเภทของเซต / Types of Sets

เซตว่าง · เซตจำกัด · เซตอนันต์

เซตว่าง Empty Set / Null Set

ภาษาไทย

เซตว่าง คือเซตที่ไม่มีสมาชิกเลย เขียนแทนด้วยสัญลักษณ์ หรือ { }

ตัวอย่าง:

  • เซตของจำนวนนับที่น้อยกว่า 0 = ∅
  • เซตของตัวเลขที่หารด้วย 0 ลงตัว = ∅ (ไม่นิยาม)
⚠️
ข้อควรระวัง: {∅} ≠ ∅ — {∅} เป็นเซตที่มีสมาชิก 1 ตัว (ซึ่งก็คือเซตว่าง) ส่วน ∅ ไม่มีสมาชิกเลย
English

An empty set is a set with no elements. It is denoted by or { }.

Examples:

  • Set of counting numbers less than 0 = ∅
  • Set of numbers divisible by 0 = ∅ (undefined)
⚠️
Warning: {∅} ≠ ∅ — {∅} is a set with one element (the empty set itself), while ∅ has no elements at all.
n(A)

เซตจำกัด Finite Set

ภาษาไทย

เซตจำกัด คือเซตที่สามารถนับจำนวนสมาชิกได้สิ้นสุด จำนวนสมาชิกของเซต A เขียนแทนด้วย n(A)

ตัวอย่าง:

  • A = {1, 2, 3, 4, 5} → n(A) = 5
  • B = {a, b, c} → n(B) = 3
  • ∅ เป็นเซตจำกัด → n(∅) = 0
English

A finite set is a set where the number of elements can be counted and has an end. The number of elements in set A is written as n(A).

Examples:

  • A = {1, 2, 3, 4, 5} → n(A) = 5
  • B = {a, b, c} → n(B) = 3
  • ∅ is also finite → n(∅) = 0

เซตอนันต์ Infinite Set

ภาษาไทย

เซตอนันต์ คือเซตที่มีสมาชิกไม่สิ้นสุด ไม่สามารถนับจำนวนสมาชิกทั้งหมดได้

ตัวอย่าง:

  • ℤ = {..., -2, -1, 0, 1, 2, ...} (เซตจำนวนเต็ม)
  • ℕ = {1, 2, 3, 4, ...} (เซตจำนวนนับ)
  • เซตของจำนวนคู่ทั้งหมด = {2, 4, 6, 8, ...}
English

An infinite set is a set whose elements cannot all be counted — the list goes on forever.

Examples:

  • ℤ = {..., -2, -1, 0, 1, 2, ...} (Integers)
  • ℕ = {1, 2, 3, 4, ...} (Natural Numbers)
  • Set of all even numbers = {2, 4, 6, 8, ...}

สรุปเปรียบเทียบ / Summary Comparison

ประเภท / Type นับสมาชิกได้? / Countable? n(A) / Cardinal ตัวอย่าง / Example
เซตว่าง / Empty Set (= 0) 0 ∅ หรือ { }
เซตจำกัด / Finite Set n ∈ ℤ⁺ ∪ {0} {1, 2, 3}
เซตอนันต์ / Infinite Set {1, 2, 3, ...}
3

⇌ เซตเทียบเท่า / Equivalent Sets

เซตที่มีจำนวนสมาชิกเท่ากัน แม้สมาชิกจะต่างกัน

ภาษาไทย

เซตเทียบเท่า คือเซตสองเซตที่มีจำนวนสมาชิกเท่ากัน เขียนแทนด้วยสัญลักษณ์ ~

เงื่อนไข: A ~ B ก็ต่อเมื่อ n(A) = n(B)

สมาชิกของทั้งสองเซตไม่จำเป็นต้องเหมือนกัน เพียงแค่มีจำนวนเท่ากัน

English

Equivalent sets are two sets that have the same number of elements. Denoted by ~.

Condition: A ~ B if and only if n(A) = n(B)

The elements do NOT need to be the same — only the count must match.

ตัวอย่างภาพ / Visual Examples

✅ เทียบเท่า / Equivalent
A
🍎 🍊 🍋
{แอปเปิล, ส้ม, เลมอน}
~
B
1 2 3
{1, 2, 3}
n(A) = 3 = n(B) ∴ A ~ B
❌ ไม่เทียบเท่า / Not Equivalent
C
a b
{a, b}
D
x y z w
{x, y, z, w}
n(C) = 2 ≠ 4 = n(D) ∴ C ≁ D

🔢 ตรวจสอบเซตเทียบเท่า / Equivalent Set Checker

ใส่จำนวนสมาชิกของเซต A และ B แล้วตรวจว่าเทียบเท่ากันหรือไม่ Enter the number of elements in sets A and B to check equivalency.

4

= เซตที่เท่ากัน / Equal Sets

เซตที่มีสมาชิกเหมือนกันทุกตัว

ภาษาไทย

เซตที่เท่ากัน คือเซตสองเซตที่มีสมาชิกเหมือนกันทุกตัว เขียนแทนด้วยสัญลักษณ์ =

เงื่อนไข: A = B ก็ต่อเมื่อ ทุกสมาชิกของ A เป็นสมาชิกของ B และทุกสมาชิกของ B เป็นสมาชิกของ A

ลำดับของสมาชิกและการซ้ำของสมาชิกไม่มีผลต่อความเท่ากันของเซต

English

Equal sets are two sets that contain exactly the same elements. Denoted by =.

Condition: A = B if and only if every element of A is in B, and every element of B is in A.

The order and repetition of elements do not affect set equality.

ตัวอย่าง / Examples

✅ เท่ากัน / Equal
A = {1, 2, 3}
=
B = {3, 1, 2}
สมาชิกเหมือนกัน เพียงแต่เรียงลำดับต่างกัน
Same elements, just in different order.
✅ เท่ากัน / Equal
C = {a, b, b, c}
=
D = {a, b, c}
สมาชิกซ้ำไม่มีผล — b นับแค่ครั้งเดียว
Repeated elements don't count — b is listed only once.
❌ ไม่เท่ากัน / Not Equal
E = {1, 2, 3}
F = {1, 2, 4}
มีสมาชิกต่างกัน: 3 ∈ E แต่ 3 ∉ F
Different elements: 3 ∈ E but 3 ∉ F.

เซตเท่ากัน vs เซตเทียบเท่า / Equal vs Equivalent Sets

สมบัติ / Property เซตที่เท่ากัน
Equal Sets (=)
เซตเทียบเท่า
Equivalent Sets (~)
จำนวนสมาชิกเท่ากัน
Same number of elements
เสมอ เสมอ
สมาชิกเหมือนกันทุกตัว
Exact same elements
เสมอ ไม่จำเป็น
ตัวอย่าง / Example {1,2,3} = {3,2,1} {1,2,3} ~ {a,b,c}
💡
สรุป / Summary: ถ้าเซตสองเซตเท่ากัน แสดงว่าเซตทั้งสองต้องเทียบเท่ากันด้วย แต่ถ้าเซตสองเซตเทียบเท่ากัน ไม่จำเป็นต้องเท่ากัน If two sets are equal, they are always equivalent. But two equivalent sets are NOT necessarily equal.

คำศัพท์ที่น่าสนใจ / Key Vocabulary

คำศัพท์คณิตศาสตร์ภาษาอังกฤษ พร้อมรากศัพท์

คำศัพท์ รากศัพท์ / Root ความหมาย / Meaning
set settan (to place) เซต · A well-defined collection of distinct objects
element elementum (principle) สมาชิกของเซต · A member of a set
empty set āmettig (unoccupied) เซตว่าง · A set with no elements
cardinal cardinalis (pivotal) จำนวนสมาชิก · The number of elements in a set
equivalent aequi(equal) + valere เทียบเท่า · Having the same number of elements
equal aequalis (uniform) เท่ากัน · Having exactly the same elements