プリンピキア

第3章関数Functions

3.4 Composition of Functions3.4 関数の合成

Learning Objectives 学習目標

In this section, you will:

この節を終えると、次のことができるようになる。

• Combine functions using algebraic operations.• Create a new function by composition of functions.• Evaluate composite functions.• Find the domain of a composite function.• Decompose a composite function into its component functions.

・代数の計算で関数を組み合わせる。・関数の合成によって新しい関数を作る。・合成関数の値を求める。・合成関数の定義域を求める。・合成関数を、もとの関数に分解する。

Suppose we want to calculate how much it costs to heat a house on a particular day of the year. The cost to heat a house will depend on the average daily temperature, and in turn, the average daily temperature depends on the particular day of the year. Notice how we have just defined two relationships: The cost depends on the temperature, and the temperature depends on the day.

一年のある日に家を暖めるのにいくらかかるかを計算したいとしよう。家の暖房費はその日の平均気温に依り、その平均気温は一年のどの日かに依る。ここで二つの関係を定めたことに注意せよ。費用は気温に依り、気温は日に依る。

Using descriptive variables, we can notate these two functions. The function C( T ) gives the cost C of heating a house for a given average daily temperature in T degrees Celsius. The function T( d ) gives the average daily temperature on day d of the year. For any given day, Cost=C( T( d ) ) means that the cost depends on the temperature, which in turns depends on the day of the year. Thus, we can evaluate the cost function at the temperature T( d ). For example, we could evaluate T( 5 ) to determine the average daily temperature on the 5th day of the year. Then, we could evaluate the cost function at that temperature. We would write C( T( 5 ) ).

中身を思わせる変数を使って、この二つの関数を書き表せる。関数 C( T ) は、一日の平均気温が摂氏 T 度のときの家の暖房費 C を与える。関数 T( d ) は、その年の d 日目の平均気温を与える。ある日について Cost=C( T( d ) ) とすると、費用は気温に依り、その気温は一年のどの日かに依る。よって気温 T( d ) における費用の関数の値を求められる。たとえば T( 5 ) の値を求めれば、その年の5日目の平均気温が分かる。そのうえで、その気温における費用の関数の値を求められる。C( T( 5 ) ) と書く。

Explanation of C(T(5)), which is the cost for the temperature and T(5) is the temperature on day 5.

By combining these two relationships into one function, we have performed function composition, which is the focus of this section.

この二つの関係を一つの関数にまとめることを、関数の合成という。これがこの節の主題である。