Solveeit Logo

Question

Question: For what value of \(n\) is\[\left| {n - 1} \right| + 1\] equal to \(0\)? (A) \(0\) (B) \(1\) (C) \...

For what value of nn isn1+1\left| {n - 1} \right| + 1 equal to 00?
(A) 00 (B) 11 (C) 22 (D) There is no such value of nn

Explanation

Solution

Hint- For each non-negative value ofxx , f(x)f(x) is equal to the positive value of xx. But for negative values of xx, f(x)f(x) is equal to negative value of xx.
There is a concept of critical values that we need to understand when using mod function. Critical values are the value where our expression inside the mod becomes equal to 00. It is the point where our modulus function changes its nature. As for f(x)=xf(x) = \left| x \right|, the function changes its nature from x - x to xx as we reach at point x=0x = 0.

Complete step by step solution-
Let f(n)=n1+1f(n) = \left| {n - 1} \right| + 1
We have to find the value of nn, for which f(n)=0f(n) = 0.
First we have to find Critical value and for that expression inside the mod should be equal to zero.
n1=0\therefore n - 1 = 0
n=1\Rightarrow n = 1 (Critical value)
Now, we will have two cases,
1.n<1n < 1
n1=(n1)\therefore \left| {n - 1} \right| = - (n - 1)
f(n)=0f(n) = 0
(n1)+1=0\Rightarrow - (n - 1) + 1 = 0
n+2=0\Rightarrow - n + 2 = 0
n=2\Rightarrow n = 2
Here n=2n = 2 which is greater than one and it is not possible in this case.
2.n1n \ge 1
n1=(n1)\therefore \left| {n - 1} \right| = (n - 1)
f(n)=0f(n) = 0
(n1)+1=0\Rightarrow (n - 1) + 1 = 0
n=0\Rightarrow n = 0
Here n=0n = 0 which is less than one and it is not possible in this case.
Hence there is no such value of n for which f(n)=n1+1f(n) = \left| {n - 1} \right| + 1will be equal to00.
Answer-(D)

Note: Here we have two cases as there is only one critical value i.e. 11. If we will have more than one critical point, our cases may increase and then we need to open mod carefully with positive or negative sign depending upon the value inside the mod.