I have a problem that I'm having trouble figuring out the distribution with given condition.
It is given that 1/($X$+1), where $X$ is an exponentially distributed random variable with parameter 1.
Original Problem:
What is the distribution of 1/($X$+1), where $X$ is an expoentially distributed random variable with parameter 1?
With parameter 1, $X$ can be written as $e^{-x}$, and after plug in the given function, I got $$\frac{1}{e^{-x}+1} = \frac{e^{x}}{e^{x}+1}$$
What type of distribution is this?
You've misunderstood the difference between a random variable $X$ and its probability density function $f_X(x)$. These are not the same thing. $X$ represents the value of the random outcome. $f_X(x)$ represents a likelihood of observing a particular outcome.
With this in mind, given that $X \sim \operatorname{Exponential}(1)$, we have $$f_X(x) = e^{-x}, \quad x \ge 0,$$ and the cumulative distribution function $$F_X(x) = \Pr[X \le x] = 1 - e^{-x}, \quad x \ge 0.$$ Then let $Y = 1/(1+X)$, so that the CDF of $Y$ is $$F_Y(y) = \Pr[Y \le y] = \Pr[1/(1+X) \le y] = \Pr[1+X \ge 1/y] = \Pr[X \ge \tfrac{1}{y} - 1].$$ What we have done is express the CDF of $Y$ in terms of a probability on $X$ through a monotone variable transformation. Then we use the CDF of $X$ to compute the resulting probability: $$F_Y(y) = \Pr[X \ge \tfrac{1}{y} - 1] = 1 - \Pr[X \le \tfrac{1}{y} - 1] = 1 - (1 - e^{-(1/y - 1)}) = e^{1 - 1/y}.$$ What is the corresponding support of $Y$? Well, we know $X \ge 0$. So $1+X \ge 1$, which in turn implies $1/(1+X) \le 1$. And since $X$ is always positive, so is $1/(1+X)$. Therefore, $0 < Y \le 1$ and we would write the complete CDF as $$F_Y(y) = \begin{cases} 0, & y \le 0, \\ e^{1 - 1/y}, & 0 < y \le 1, \\ 1, & y > 1.\end{cases}$$ The density would be written $$f_Y(y) = F'_Y(y) = \begin{cases} y^{-2} e^{1-1/y}, & 0 < y \le 1, \\ 0, & \text{otherwise}.\end{cases}$$