• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Math problem

Hulk

Diamond Member
One of my friends told me the slope of the following points is 1.

(2, absolute value(k))

(4, k)

Looks to me like the slope is 0 for positive values of k and -k for positive values of k.

What am I missing?
 
That sounds about right. For absolute value problems, you should always break it up into two cases.

Here,

Case 1: k >= 0 --> abs(k) = k
You are left with evaluating the slope between the points (2, k) and (4, k) -> m= 0

Case 2: k < 0 --> abs(k) = -k
You are left with evaluating the slope between the points (2, -k) and (4, k) -> m = +k.
 
Back
Top