Function $f(x) \in \mathbb{R}^n$, $(n\geq 1)$, depend on one parameter $x \in \mathbb{R}$. Performing a nonlinear transformation of $f(x)$, we obtain function $g(y) \in \mathbb{R}^n$. This transformation cannot be represented by analytical formulation. My optimization problem is to find $x$ in order $g(x) = C$, where C is explicit known.
What are possibilities (and best) strategy for solving this kind of optimization problem?
What you have is an unconstrained, (presumably) very nonlinear, and possibly non-smooth optimization problem. By and large, the best you can do is to do an approximate Newton method where you numerically calculate the approximate slope, and then proceed to either the left or right of your current location depending on the sign. You can adjust how far you move (typically by powers of $2$) until you've successfully decreased your current value of $\|g(x) - C\|$ - this is called a damped Newton method.