采用纽顿语方法在C中解决非线性的问题?
原文:Solving non-linear equation in C using Newton s method?
原文:Solving non-linear equation in C using Newton s method?
I have a non-linear equation defined as p^(n-1) * [1-(1-p)^n] * r - c = 0, where n, r, and c are given integers. I want to solve for p in the C programming language and decided to use Newton s method. ...