I need help to solve this formula ((n * 2) + 10) / (n + 1) = 3, preferably in PHP.
I'm able to solve this equation on paper quite easily however when I try to implement this in PHP, I'm not sure where to start. I've done several google queries and searches on here and nothing seems to help. I'm missing the proper approach to deal with this problem.
Any tips and pointers would be great, and if you provide the exact code, please explain how you got to this result.
Thanks!
Update #1
The numbers, 2, 10 and 3 should be variables that can be changed.
