3.13
関数を組み合わせることで、変数間の相互作用を表す新しい数学的モデルを構築できます。これらの結合は、変化する量の関係を理解する上で基本的であり、科学や工学の分野で広く活用されています。加算、減算、乗算、除算、そして合成といった結合操作は、それぞれ結果として得られる関数の定義域や挙動に独自の影響を与えま…
関数は、出力を加算、減算、乗算、除算、または構成するなど、さまざまな方法で組み合わせて新しい関数を作成できます。
これらの組み合わせをよりよく理解するために、各演算 (加算、減算、乗算、除算) で 2 つの関数からの出力がどのように相互作用するかを示す例を考えてみましょう。
これは、入力関数のドメインが変更されると、出力のドメインも変更されることを示しています。
結合関数のドメインには、両方の入力関数に有効な入力値のみが含まれます。
除算の場合、ゼロ除算を引き起こす値は除外されます。
コンポジションは別の方法であり、ある関数の出力が別の関数の入力になり、複合関数を形成します。
石を落とした後、水の波紋が外側に広がっていることを考えてみましょう。
1 つの関数は時間の経過に伴う増加する半径をモデル化し、別の関数はその半径を使用して面積を計算します。
これらを組み合わせることで、時間の経過とともに面積がどのように変化するかをモデル化する複合関数を形成します。
Q1: What are the main ways to combine two functions?
Functions can be combined through five primary methods: addition, subtraction, multiplication, division, and composition. Each operation creates a new function with distinct properties. Addition, subtraction, and multiplication combine outputs directly, while division requires excluding values where the denominator equals zero. Composition nests one function inside another, where the output of the inner function becomes the input of the outer function.
Q2: How does the domain change when you add or subtract functions?
When adding or subtracting functions, the domain of the resulting function includes only input values valid for both original functions. For example, if f(x) = √x and g(x) = x - 2, then (f + g)(x) is defined only for x ≥ 0, since the square root requires non-negative inputs. The combined domain is the intersection of both individual domains.
Q3: Why does division of functions have stricter domain restrictions?
Division of functions excludes any input values where the denominator function equals zero, since division by zero is undefined. For instance, if f(x) = √x and g(x) = x - 2, then (f/g)(x) is only defined for x > 2, where both f(x) is real and g(x) ≠ 0. This additional restriction beyond the individual domains ensures the quotient function is mathematically valid.
Q4: What is function composition and how does it work?
Function composition occurs when one function's output becomes the input of another, denoted as (f ∘ g)(x) = f(g(x)). This creates a composite function modeling sequential processes where one quantity depends on another. For example, if radius increases over time and area depends on radius, composing these functions models how area changes over time directly.
Q5: How do you find the domain of a composite function?
The domain of a composite function (f ∘ g)(x) must satisfy two conditions: x must be in the domain of g, and g(x) must be in the domain of f. For example, if f(x) = √x and g(x) = x² - 9, then (f ∘ g)(x) = √(x² - 9) requires x² - 9 ≥ 0, giving a domain of (−∞, −3] ∪ [3, ∞). Each step must yield outputs valid for the next step.
Q6: How do combined functions model real-world phenomena?
Combined functions describe interactions between variables in scientific and engineering contexts. A ripple expanding after a stone drops illustrates this: one function models radius increasing over time, another calculates area from radius. Composing these functions creates a model showing how area changes over time, demonstrating how mathematical combinations capture sequential physical processes.
Q7: What determines whether a combined function is valid at a specific input?
A combined function is valid at an input only if that input satisfies the domain requirements of all component functions involved. For arithmetic operations, the input must be in both functions' domains. For composition, the input must be in the inner function's domain, and the inner function's output must be in the outer function's domain. These restrictions ensure all intermediate and final outputs are mathematically defined.