Basic Solutions and Linear Combinations

lapo3399
Messages
53
Reaction score
0
Just to clarify these concepts: if a homogeneous system of linear equations with four variables z1, z2, z3, and z4 yields a matrix in reduced row echelon form that defines (as an arbitrary example) the linear equations

z1 = z3 + 0.5z4 = t + 0.5s
z2 = 2z3 - z4 = 2t - s
z3 = t
z4 = s

then the linear combination should be:

<br /> \left[ \begin{array}{ c } z1 &amp; z2 &amp; z3 &amp; z4 \end{array} \right] = t \left[ \begin{array}{ c } 1 &amp; 2 &amp; 1 &amp; 0 \end{array} \right] + s \left[ \begin{array}{ c } 0.5 &amp; -1 &amp; 0 &amp; 1 \end{array} \right]<br />

and the basic solutions are:

<br /> \left[ \begin{array}{ c } 1 &amp; 2 &amp; 1 &amp; 0 \end{array} \right] , \left[ \begin{array}{ c } 0.5 &amp; -1 &amp; 0 &amp; 1 \end{array} \right]<br />

My main problem is understanding exactly what the basic solutions are. I'm not sure whether they're just the direction vectors multiplied by each of the parameters or whether they include the parameters as well. Please clarify this for me.

Thanks.
 
Physics news on Phys.org
pls i need some one to help me correct my read subroutine in fortran 77.i must have made some errors and i need to be corrected.Thanks
walterman

c**********************************************************
subroutine read_data(a,b,n,nsys)
c**********************************************************
implicit double precision (a-h,o-z)
dimension a(n,n),b(n)
charactername*20, form*50
c
write(*,*)
write(*,*) 'Enter configuration file name: '
read (*,'(a)')
open(unit=10,file='fname',status='New',iostat=non)
100 continue
read(unit=*,fmt=*) nsys
if(nsys.eq.5) then
form='(5f10.5)'
else
form='(6f10.5)'
end if
read(unit=*,fmt=*,err=999) ((a(i,j), j=1,nsys), i=1,nsys)
read(unit=*,fmt=*,err=999) (b(i), i=1,nsys)
999 write(*,*)
write(*,'(a,i3,a,f16.8)') ' System size : ',nsys,' x',nsys
write(*,*)
write(*,*) 'xmulticient matrix : '
write(20,fmt=form) ((a(i,j), j=1,nsys), i=1,nsys)
write(*,fmt=form) ((a(i,j), j=1,nsys), i=1,nsys)
write(*,*)
write(*,*) 'constant vector: '
write(21,fmt=form) (b(i), i=1,nsys)
write(*,fmt=form) (b(i), i=1,nsys)
write(*,*)

return
end
 
##\textbf{Exercise 10}:## I came across the following solution online: Questions: 1. When the author states in "that ring (not sure if he is referring to ##R## or ##R/\mathfrak{p}##, but I am guessing the later) ##x_n x_{n+1}=0## for all odd $n$ and ##x_{n+1}## is invertible, so that ##x_n=0##" 2. How does ##x_nx_{n+1}=0## implies that ##x_{n+1}## is invertible and ##x_n=0##. I mean if the quotient ring ##R/\mathfrak{p}## is an integral domain, and ##x_{n+1}## is invertible then...
The following are taken from the two sources, 1) from this online page and the book An Introduction to Module Theory by: Ibrahim Assem, Flavio U. Coelho. In the Abelian Categories chapter in the module theory text on page 157, right after presenting IV.2.21 Definition, the authors states "Image and coimage may or may not exist, but if they do, then they are unique up to isomorphism (because so are kernels and cokernels). Also in the reference url page above, the authors present two...
When decomposing a representation ##\rho## of a finite group ##G## into irreducible representations, we can find the number of times the representation contains a particular irrep ##\rho_0## through the character inner product $$ \langle \chi, \chi_0\rangle = \frac{1}{|G|} \sum_{g\in G} \chi(g) \chi_0(g)^*$$ where ##\chi## and ##\chi_0## are the characters of ##\rho## and ##\rho_0##, respectively. Since all group elements in the same conjugacy class have the same characters, this may be...

Similar threads

Replies
7
Views
1K
Replies
4
Views
2K
Replies
2
Views
3K
Replies
14
Views
2K
Replies
4
Views
2K
Replies
3
Views
2K
Replies
8
Views
2K
Back
Top