A few days ago
meshru_101

Write the absolute value function as a compound (piecewise) function… f(x) = | (1/2)x-3|?

so that’s basically the equation….can someone help me figure it out????

Top 2 Answers
A few days ago
meco031719

Favorite Answer

f(x) = 1/2x – 3 if x >= 6, 3 – 1/2x if x < 6
0

A few days ago
Anonymous
I think you mean

abs(x) = x >= 0 ? x : -x

or possibly

abs(x) = if x >=0 then x else if x < 0 then -x

0