Wat is de oplossing voor 4x-1 <= 3?

Wat is de oplossing voor 4x-1 <= 3?
Anonim

Antwoord:

#x <= 1 #

Uitleg:

Je moet het herschikken maar de #<=#

# 4x <= 4 # (het nemen van de #-1# over)

#x <= 4/4 #

#x <= 1 #

Antwoord:

# -1 / 2 <= x <= 1 #

Uitleg:

Oplossen #abs (4x-1) <= 3 #

Dit antwoord bestaat uit twee delen.

#color (rood) (4x-1 <= 3) # en #color (blauw) (4x-1> = - 3) #

#color (rood) (4x <= 4) #

#color (rood) (x <= 1) #

#color (blauw) (4x-1> = - 3) #

#color (blauw) (4x> = - 2) #

#color (blauw) (x> = - 2/4) #

#color (blauw) (x> = - 1/2) #

#color (purple) (- 1/2 <= x <= 1) #

Referentie: