필터 지우기
필터 지우기

is subset S a subspace of R3?

조회 수: 1 (최근 30일)
Hannah  Blythe
Hannah Blythe 2017년 10월 7일
편집: Cedric 2017년 10월 8일
S - {(2x-y, xy, 7x+2y): x,y is in R} of R3
Three requirements I am using are i. S is nonempty ii. For any u,v in S, u+v is in S iii. For any c in R and u in S, cu is in S So far I have proved the first condition. For the second condition I said a,b,c,d are in R and that u=(2a-b, ab, 7a+2b) and v=(2c-d, cd, 7c+2d). When I added them I got {2(a+c)-(b+d), (ab)+(cd), 7(a+c)+2(b+d)}. What should I do from here?
  댓글 수: 3
Hannah  Blythe
Hannah Blythe 2017년 10월 7일
편집: Cedric 2017년 10월 7일
Three requirements I am using are
i. S is nonempty
ii. For any u,v in S, u+v is in S
iii. For any c in R and u in S, cu is in S
So far I have proved the first condition.
For the second condition I said a,b,c,d are in R and that u=(2a-b, ab, 7a+2b) and v=(2c-d, cd, 7c+2d). When I added them I got {2(a+c)-(b+d), (ab)+(cd), 7(a+c)+2(b+d)}. What should I do from here?
Cedric
Cedric 2017년 10월 7일
편집: Cedric 2017년 10월 7일
Good start. As (a+c) in R and so is (b+d), you demonstrated that the first component of u+v is compatible with the definition of S.
What about the second component? In other words, can you develop/expand/factor ab+cd into a product of (a+c) and (b+d)?
If you can, check the third component. If you cannot, well unless it's obvious it's not a proof (maybe it's just that you are unable to do it, but it could be possible). Yet you may be able to use what you understand about the mismatch for building a counter-example, and you only need one to show that it doesn't work.

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

답변 (1개)

Cedric
Cedric 2017년 10월 8일
편집: Cedric 2017년 10월 8일
Now that you have probably finished your exercise, here is S with the origin displayed as a red dot:
Looking at this, you understand why, when you pick two vectors defined by points that are part of S, their sum is likely not part of S.
And here is the little bit of code that produced this figure (minus the rotations that I did by hand), in case your exercise was related to MATLAB:
[U,V] = meshgrid( -10:10, -10:10 ) ;
X = 2*U-V ; Y = U.*V ; Z = 7*U+2*V ;
for k = 1 : 4
subplot( 2, 2, k ) ;
hold on ; grid on ;
surf( X, Y, Z ) ;
plot3( 0, 0, 0, 'r.', 'MarkerSize', 20 ) ;
end

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by