summaryrefslogtreecommitdiff
path: root/3293/CH6/EX6.9/Ex6_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3293/CH6/EX6.9/Ex6_9.sce')
-rw-r--r--3293/CH6/EX6.9/Ex6_9.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3293/CH6/EX6.9/Ex6_9.sce b/3293/CH6/EX6.9/Ex6_9.sce
new file mode 100644
index 000000000..1db354789
--- /dev/null
+++ b/3293/CH6/EX6.9/Ex6_9.sce
@@ -0,0 +1,14 @@
+//page 199
+//Example 6.9
+clc;
+clear;
+close;
+disp('T is the linear operator on R^2 represented in standard order basis by matrix:');
+A = [0 -1;1 0];
+disp(A,'A = ');
+disp('Then invariant subspaces of R^2 under T are R^2 and zero subspace');
+disp('If W is invariant subspace spanned by non zero vector ''a'' means ''a'' is characteristic vector');
+disp('But, A has no characteristic values');
+disp('When W is invariant under T, T induces a linear operator Tw on W that is defined by');
+disp('Tw(a) = T(a)');
+//end