answersLogoWhite

0

No. In rare cases, it may be; usually it will not be.Here is one simple example. Function f() adds 10 to the input, function g() multiplies the input by 2. Let the starting number be 10.

If you first apply function f(), and then function g(), you get (10 + 10) * 2 = 40.

If you first apply function g(), and then function f(), you get 10 * 2 + 10 = 30.

User Avatar

Wiki User

8y ago

What else can I help you with?