Program to handle the Arithmetic in the Row Reduction of a Linear System VisualBASIC version (c)1999, Glyn George. Linear System: Row 1: 1/1 0/1 2/1 0/1 3/1 0/1 Row 2: 1/1 0/1 4/1 2/1 0/1 1/1 Row 3: 2/1 0/1 4/1 0/1 7/1 2/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 1 / 1 times row 1 from row 2 . Linear System: Row 1: 1/1 0/1 2/1 0/1 3/1 0/1 Row 2: 0/1 0/1 2/1 2/1 -3/1 1/1 Row 3: 2/1 0/1 4/1 0/1 7/1 2/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 2 / 1 times row 1 from row 3 . Linear System: Row 1: 1/1 0/1 2/1 0/1 3/1 0/1 Row 2: 0/1 0/1 2/1 2/1 -3/1 1/1 Row 3: 0/1 0/1 0/1 0/1 1/1 2/1 ----------------------------------------------------------------------------- Selected row operation: Divide row 2 by 2 / 1 . Linear System: Row 1: 1/1 0/1 2/1 0/1 3/1 0/1 Row 2: 0/1 0/1 1/1 1/1 -3/2 1/2 Row 3: 0/1 0/1 0/1 0/1 1/1 2/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 3 / 1 times row 3 from row 1 . Linear System: Row 1: 1/1 0/1 2/1 0/1 0/1 -6/1 Row 2: 0/1 0/1 1/1 1/1 -3/2 1/2 Row 3: 0/1 0/1 0/1 0/1 1/1 2/1 ----------------------------------------------------------------------------- Selected row operation: Subtract -3 / 2 times row 3 from row 2 . Linear System: Row 1: 1/1 0/1 2/1 0/1 0/1 -6/1 Row 2: 0/1 0/1 1/1 1/1 0/1 7/2 Row 3: 0/1 0/1 0/1 0/1 1/1 2/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 2 / 1 times row 2 from row 1 . Linear System: Row 1: 1/1 0/1 0/1 -2/1 0/1 -13/1 Row 2: 0/1 0/1 1/1 1/1 0/1 7/2 Row 3: 0/1 0/1 0/1 0/1 1/1 2/1 ----------------------------------------------------------------------------- Program execution terminated.