summaryrefslogtreecommitdiff
path: root/3293/CH7/EX7.5
diff options
context:
space:
mode:
Diffstat (limited to '3293/CH7/EX7.5')
-rw-r--r--3293/CH7/EX7.5/Ex7_5.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3293/CH7/EX7.5/Ex7_5.sce b/3293/CH7/EX7.5/Ex7_5.sce
new file mode 100644
index 000000000..92cc1b026
--- /dev/null
+++ b/3293/CH7/EX7.5/Ex7_5.sce
@@ -0,0 +1,20 @@
+//page 247
+//Example 7.5
+clc;
+clear;
+close;
+disp('T is the linear operator on C^2');
+disp('Characteristic polynomial for T is:');
+disp('(x - c1)(x - c2)');
+disp('c1 and c2 are distinct complex numbers.');
+disp('Then, T is diagonalizable and is represented in ordered basis by:');
+disp('c1 0');
+disp(' 0 c2');
+disp('or the characteristic polynomial for T is:');
+disp('(x - c)^2');
+disp('Then, minimal polynomial will be:');
+disp('(x - c)');
+disp('And, T is represented in ordered basis by:');
+disp('c 0');
+disp('1 c');
+//end