Here are a system of two nonlinear equations :
In an answer to a previous question it has been shown that this system of equations doesn't possess explicit solutions(here). But it is also noted that this system of equations is already an implicit representation of solutions to the system.
My questions are:
Can anyone explain what does implicit representation of the solutions to the system mean ?
Can I exploit this feature to obtain analytical expressions for x and y using sympy ?

You can iterate to an approximation of the solution if you have values for the constants
a,b,c,d,g,h. Numerical solvers do not need an explicit representation forxandy, they just need two expressions that define the desired relationships. That's what you have. They implicitly define whatxandymust be in terms of those relationships.By graphing or guessing or some other means you get an initial guess for the solution and then let the numerical solver take that guess and refine it to a desired precision. This is done whenever someone wants a solution to one or more equations that cannot be solved explicitly.
In your case it might look like this:
(Oscar already showed how to get numerical solutions for all roots.) If you now change one of the parameters by a small amount, you might find another solution near this solution. e.g. if you used g = 12 instead of g = 11 then you could do: