Background:
qcauchy(p, location, scale) is an built-in base R function. In this function, "location" indicates the center and "scale" indicates the speadoutness of a symmetric bell-like curve (just like a normal distribution). "location" can be any number (negative, positive, non-integer etc.). And "scale" can be any number larger than "0". Also, "p" is probability thus 0 <= p <= 1.
Coding Question:
Only as 1 example, suppose I know qcauchy(p = c(.025, .975), location = x, scale = y ) = c(-12.7062, 12.7062 ), THEN, is there a way I can find out what x and y could reasonably be (i.e., within some margin of error)?
P.S.: As a small possible start, can nlm() (i.e., non-linear minimazation) help here? Or the fact the most right-hand side [i.e., c(-12.7062, 12.7062 ) ], are the same number with opposite signs.
I used a package for solving a system of nonlinear equations
nleqslv. I tried the followingand got this answer