----------------------------------------------------------------------------- -- Copyright 2013, Open Universiteit Nederland. This file is distributed -- under the terms of the GNU General Public License. For more information, -- see the file "LICENSE.txt", which is included in the distribution. ----------------------------------------------------------------------------- -- | -- Maintainer : bastiaan.heeren@ou.nl -- Stability : provisional -- Portability : portable (depends on ghc) -- ----------------------------------------------------------------------------- module Domain.LinearAlgebra.Exercises ( gramSchmidtExercise, linearSystemExercise , gaussianElimExercise, systemWithMatrixExercise ) where import Control.Monad import Data.Function import Domain.LinearAlgebra.EquationsRules import Domain.LinearAlgebra.GramSchmidtRules import Domain.LinearAlgebra.LinearSystem import Domain.LinearAlgebra.Matrix import Domain.LinearAlgebra.Parser import Domain.LinearAlgebra.Strategies import Domain.LinearAlgebra.Vector import Domain.Math.Data.Relation import Domain.Math.Expr import Domain.Math.Simplification import Ideas.Common.Library hiding (simplify) import Test.QuickCheck gramSchmidtExercise :: Exercise (VectorSpace (Simplified Expr)) gramSchmidtExercise = makeExercise { exerciseId = describe "Gram-Schmidt" $ newId "linearalgebra.gramschmidt" , status = Alpha , parser = \s -> case parseVectorSpace s of Right a -> Right (fmap simplified a) Left msg -> Left msg , prettyPrinter = unlines . map show . vectors , equivalence = withoutContext $ \x y -> let f = length . filter (not . isZero) . vectors . gramSchmidt in f x == f y , extraRules = rulesGramSchmidt , ready = predicate (orthonormalList . filter (not . isZero) . vectors) , strategy = gramSchmidtStrategy , randomExercise = let f = simplified . fromInteger . (`mod` 25) in simpleGenerator (liftM (fmap f) arbitrary) } linearSystemExercise :: Exercise (Equations Expr) linearSystemExercise = makeExercise { exerciseId = describe "Solve Linear System" $ newId "linearalgebra.linsystem" , status = Stable , parser = \s -> case parseSystem s of Right a -> Right (simplify a) Left msg -> Left msg , prettyPrinter = unlines . map show , equivalence = withoutContext $ \x y -> let f = fromContext . applyD linearSystemStrategy . inContext linearSystemExercise . map toStandardForm in case (f x, f y) of (Just a, Just b) -> getSolution a == getSolution b _ -> False , extraRules = equationsRules , ruleOrdering = ruleOrderingWithId [getId ruleScaleEquation] , ready = predicate inSolvedForm , strategy = linearSystemStrategy , randomExercise = simpleGenerator (fmap matrixToSystem arbMatrix) } gaussianElimExercise :: Exercise (Matrix Expr) gaussianElimExercise = makeExercise { exerciseId = describe "Gaussian Elimination" $ newId "linearalgebra.gaussianelim" , status = Stable , parser = \s -> case parseMatrix s of Right a -> Right (simplify a) Left msg -> Left msg , prettyPrinter = ppMatrixWith show , equivalence = withoutContext (eqMatrix `on` fmap simplified) , ready = predicate inRowReducedEchelonForm , strategy = gaussianElimStrategy , randomExercise = simpleGenerator arbMatrix , testGenerator = Just arbMatrix } systemWithMatrixExercise :: Exercise Expr systemWithMatrixExercise = makeExercise { exerciseId = describe "Solve Linear System with Matrix" $ newId "linearalgebra.systemwithmatrix" , status = Provisional , parser = \s -> case (parser linearSystemExercise s, parser gaussianElimExercise s) of (Right ok, _) -> Right $ toExpr ok (_, Right ok) -> Right $ toExpr ok (Left _, Left _) -> Left "Syntax error" , prettyPrinter = \expr -> case (fromExpr expr, fromExpr expr) of (Just ls, _) -> (unlines . map show) (ls :: Equations Expr) (_, Just m) -> ppMatrix (m :: Matrix Expr) _ -> show expr , equivalence = withoutContext $ \x y -> let f expr = case (fromExpr expr, fromExpr expr) of (Just ls, _) -> Just (ls :: Equations Expr) (_, Just m) -> Just $ matrixToSystem (m :: Matrix Expr) _ -> Nothing in case (f x, f y) of (Just a, Just b) -> simpleEquivalence linearSystemExercise a b _ -> False , ready = predicate (inSolvedForm . (fromExpr :: Expr -> Equations Expr)) , strategy = systemWithMatrixStrategy , randomExercise = simpleGenerator (fmap (toExpr . matrixToSystem) (arbMatrix :: Gen (Matrix Expr))) , testGenerator = fmap (liftM toExpr) (testGenerator linearSystemExercise) } -------------------------------------------------------------- -- Other stuff (to be cleaned up) arbMatrix :: Num a => Gen (Matrix a) arbMatrix = fmap (fmap fromInteger) arbNiceMatrix arbUpperMatrix :: (Enum a, Num a) => Gen (Matrix a) arbUpperMatrix = threeNums $ \a b c -> makeMatrix [[1, a, b], [0, 1, c], [0, 0, 1]] arbAugmentedMatrix :: (Enum a, Num a) => Gen (Matrix a) arbAugmentedMatrix = threeNums $ \a b c -> makeMatrix [[1, 0, 0, 1], [a, 1, 0, 1], [b, c, 1, 1]] threeNums :: (Enum a, Num a) => (a -> a -> a -> b) -> Gen b threeNums f = let m = elements [-5 .. 5] in liftM3 f m m m arbNiceMatrix :: (Enum a, Num a) => Gen (Matrix a) arbNiceMatrix = do m1 <- arbUpperMatrix m2 <- arbAugmentedMatrix return (multiply m1 m2)