3.14
일대일 함수는 정의역의 각 원소가 치역의 서로 다른 하나의 원소에 대응되는 함수입니다. 이 성질은 서로 다른 두 입력이 동일한 출력을 만들지 않음을 보장하며, x_1 ≠ x_2이면 항상 f(x_1) ≠ f(x_2)로 형식화됩니다. 이러한 함수를 판별하는 그래프적 기준은…
일대일 함수는 각 입력이 고유한 출력에 매핑되는 함수입니다.
두 개의 서로 다른 입력이 동일한 결과를 가져오는 경우 함수는 일대일이 아닙니다.
이는 양수 입력과 음수 입력이 모두 동일한 출력을 생성하는 특정 함수에서 일대일 규칙을 위반하는 경우가 많습니다.
입력을 음수가 아닌 값으로 제한하는 등 도메인을 제한하면 이 속성을 복원할 수 있습니다.
일대일 함수는 수평선 테스트를 통과하며, 이는 수평선이 일대일 함수의 그래프를 두 번 이상 교차하지 않음을 의미합니다.
일대일 함수만 역함수에 적합합니다. "f의 역수"라는 표기법은 "f를 음의 1승으로 올린다"는 의미가 아닙니다. 대신 역은 프로세스를 역전시켜 각 출력을 입력으로 되돌립니다.
이것은 일대일 함수의 도메인이 역함수의 범위가 되고 범위가 도메인이 된다는 것을 시각적으로 확인합니다. 함수와 그 역함수가 구성되면 연산이 상쇄되고 x가 생성됩니다.
학교 데이터베이스에서 각 학생 ID는 한 명의 학생에게만 연결됩니다. 이는 각 입력에 고유한 단일 출력이 있는 일대일 함수를 형성합니다.
Q1: What makes a function one-to-one?
A one-to-one function ensures each input maps to a unique output, meaning no two distinct inputs produce the same result. Formally, if x1 ≠ x2, then f(x1) ≠ f(x2). This property is essential for a function to have an inverse, distinguishing it from functions where multiple inputs yield identical outputs.
Q2: How does the horizontal line test identify one-to-one functions?
The horizontal line test determines if a function is one-to-one by checking whether any horizontal line intersects the graph more than once. If no horizontal line crosses the graph at multiple points, the function is one-to-one. This visual method provides quick graphical verification using graphs of functions.
Q3: Why isn't the quadratic function f(x) = x² one-to-one over all real numbers?
The quadratic function f(x) = x² is not one-to-one because both positive and negative inputs produce the same output. For example, f(1) = 1 and f(-1) = 1, violating the requirement that distinct inputs must yield distinct outputs. This symmetry about the y-axis fails the one-to-one condition.
Q4: How can domain restriction make a function one-to-one?
Restricting the domain to non-negative values eliminates duplicate outputs and restores the one-to-one property. For instance, limiting f(x) = x² to x ≥ 0 ensures each input produces a unique output. This restricted function then qualifies for an inverse, enabling the reversal of the input-output relationship.
Q5: What does the inverse of a one-to-one function do?
The inverse function, denoted f⁻¹(x), reverses the input-output relationship of the original function. If f(a) = b, then f⁻¹(b) = a. When a function and its inverse are composed through combining functions, the operations cancel out, returning the original input. Only one-to-one functions possess inverses.
Q6: How are the domain and range related between a function and its inverse?
The domain of the original function becomes the range of its inverse, and the range becomes the domain. Graphically, the inverse reflects the original function across the line y = x. This symmetry visually confirms the swapped input-output relationship and emphasizes the reversibility of one-to-one functions.
Q7: Can you provide a real-world example of a one-to-one function?
In a school database, each student ID links to exactly one student, forming a one-to-one function where each input has a single, distinct output. This relationship ensures data integrity and allows the inverse function to retrieve a student's ID from their record. Such one-to-one mappings are fundamental to database design and information systems.