[Next] [Prev] [_____] [Left] [Up] [Index] [Root]
Solution of a System of Linear Equations

Solution of a System of Linear Equations

IsConsistent(a, v) : ModMatFldElt, ModTupFld -> BoolElt, ModTupFldElt, ModTupFld
Given a matrix a belonging to K^((m x n)) and a vector v belonging to the vector space K^((m)), return true iff the system of linear equations x * a = v is consistent. If the system is consistent, then the function will also return:
Solution(a, v) : ModMatFldElt, ModTupFld -> ModTupFldElt, ModTupFld
Given a matrix a belonging to K^((m x n)) and a vector v belonging to the vector space K^((m)), solve the system of linear equations x * a = v for x. The function returns two values:
[Next] [Prev] [_____] [Left] [Up] [Index] [Root]