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 1/1 -1/1 2/1 Row 2: 0/1 1/1 1/1 1/1 1/1 Row 3: 1/1 2/1 3/1 1/1 4/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 1 / 1 times row 1 from row 3 . Linear System: Row 1: 1/1 0/1 1/1 -1/1 2/1 Row 2: 0/1 1/1 1/1 1/1 1/1 Row 3: 0/1 2/1 2/1 2/1 2/1 ----------------------------------------------------------------------------- Selected row operation: Subtract 2 / 1 times row 2 from row 3 . Linear System: Row 1: 1/1 0/1 1/1 -1/1 2/1 Row 2: 0/1 1/1 1/1 1/1 1/1 Row 3: 0/1 0/1 0/1 0/1 0/1 ----------------------------------------------------------------------------- Program execution terminated.