R (programming language)/Tutorials/Algebra

From testwiki
Revision as of 18:59, 26 April 2016 by imported>MaintenanceBot (Changing category from Category:How to use R to Category:R (programming language))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Solving polynomial equations

To solve axk+bxk1++n=0, where a,b,,n are given integers, use the command

polyroot(c(a,b,...,n))