3.14
פונקציה חד־חד־ערכית היא פונקציה מתמטית שבה כל איבר בתחום ההגדרה ממופה לאיבר ייחודי ונבדל בטווח. תכונה זו מבטיחה שאין שני ערכי קלט שונים המניבים אותו ע…
פונקציה של אחד לאחד היא פונקציה שבה כל קלט ממפה לפלט ייחודי.
אם שתי כניסות נפרדות מובילות לאותה תוצאה, הפונקציה אינה אחד לאחד.
זה קורה לעתים קרובות עם פונקציות מסוימות שבהן כניסות חיוביות ושליליות מייצרות את אותו פלט, תוך הפרה של כלל אחד לאחד.
הגבלת התחום, כגון הגבלת קלט לערכים שאינם שליליים, יכולה לשחזר מאפיין זה.
פונקציה של אחד לאחד עוברת את מבחן הקו האופקי, כלומר אף קו אופקי לא חוצה את הגרף של פונקציה של אחד לאחד יותר מפעם אחת.
רק פונקציות של אחד לאחד זכאיות להיפוך. הסימון "f הופכי של x", אין פירושו "f מועלה לחזקה הראשונה השלילית". במקום זאת, הפוך הופך את התהליך, ומחזיר כל פלט לקלט שלו.
זה מאשר חזותית שהתחום של הפונקציה אחד לאחד הופך לטווח ההפוך, והטווח הופך לתחום. כאשר פונקציה וההופכי שלה מורכבים, הפעולות מתבטלות ומייצרות x.
במסד נתונים של בית ספר, כל מזהה תלמיד מקשר לתלמיד אחד בלבד. זה יוצר פונקציה אחד לאחד שבה לכל קלט יש פלט יחיד ומובחן.
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.