Hi ppl
I was wondering how to solve this particular one without any manipulations or simplifications! Assume the coffs are given to a computer and it has to solve it!
Please find the system of the equations, my attempt to solve it and the answer in the image ;)
a=[7 -10 -1; -14 15 0; 6 15/14 3]
b=[0;0;0]
Thanks

댓글 수: 3

I'm still waiting for more answers plz!
Walter Roberson
Walter Roberson 2014년 4월 8일
I am not clear on what more you are looking for? The null space is the solution.
@ Walter
Is null space the only solution?

댓글을 달려면 로그인하십시오.

 채택된 답변

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2014년 4월 22일

0 개 추천

With many thanks to Mischa I find a solution for this homogeneous system of equations using
null(a,'r')
gives a perfect zero

추가 답변 (1개)

Mischa Kim
Mischa Kim 2014년 4월 6일
편집: Mischa Kim 2014년 4월 6일

1 개 추천

Salaheddin, the rank of a is 2, one solution (by inspection) is, e.g.
15/14*a(:,1) + a(:,2) - 2.5*a(:,3)
You could also use the null space of a to find a solution
x = null(a);
a*x
ans =
1.0e-14 *
-0.099920072216264
0.177635683940025
0.044408920985006

댓글 수: 1

@ Dear Mischa :)
Thanks for your help, I think you were almost there, I just used your hint and made it even better. I don't know what's the difference between these two commands ATM, hopefully someone going to explain to me here or I'll find it someday somehow! lol ;)
Thanks a lot.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by