using r for introductory statistics solution manual i need s
using r for introductory statistics solution manual -i need steps of how to solve the questions using R
Solution
suppose you have a sets of non homogeneous equation,
Ax=b
you want to solution to x
in R enter matrix A and vector b
then use the function \"solve\" as
solve(A,b)
you will get a solution for x.

