why mod(rref(A), 2) does not give the correct result?
    10 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Lily
 le 30 Mai 2025
  
    
    
    
    
    Modifié(e) : David Goodmanson
      
      
 le 30 Mai 2025
            Lets say I have the followings all in mod 2
a = [1 1 0 0 0]'
b = [1 0 1 0 1]'
c = [0 1 1 0 1]'
clearly, c = a + b in mod 2
However when I run the command
mod(rref([a b c]), 2)
It does not give the corret result for linear combination in mod 2? My expect answer should be:
expected_ans = [1 0 1; 0 1 1; 0 0 0; 0 0 0; 0 0 0]
Could anyone explain why?
0 commentaires
Réponse acceptée
  David Goodmanson
      
      
 le 30 Mai 2025
        
      Modifié(e) : David Goodmanson
      
      
 le 30 Mai 2025
  
      Hi Lily,
Although c is a linear combination of a and b mod 2, rref does not know anything about mod 2.
rank([a b c])
 ans =  3
As far as rref is concerned, a, b and c are linearly independent ('mod' not being a linear operation under the usual addition of numbers).  So you get three nonzero rows.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Linear Algebra dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

