Hello,
I'm a fairly novice python user who had lightly brushed up against sympy a few years ago and understood a bit of the original solve.
Lately I've been trying to write code for solving functions I use and would use a dictionary of symbol, value pairs and would solve things like this:
solve( eq.subs(dictionary))
I recently noticed the existence of solveset and the notice to use it over solve, so I am trying to convert my code to use solveset but I can't seem to find the information
on how to substitute values into equations that are going into the solver. I imagine this is easy and I'm missing something simple but I've googled and read through a bunch of sympy doc pages and couldn't find the relevant part for solveset.
Any help is greatly appreciated, thank you for your time.