Why simple expression is not simplified (Symbolic Toolbox)?

조회 수: 2 (최근 30일)
Alex
Alex 2018년 6월 15일
댓글: Walter Roberson 2018년 6월 15일
Quite simple code
syms a b
assume(a,'real');
assume(b,'real');
simplify((-1)^a*(b-1)^a)
The answer is obviously (1-b)^a, but Matlab does not simplify it? Why? How to make it work?
Thank you!

채택된 답변

Walter Roberson
Walter Roberson 2018년 6월 15일
That is not a correct solution.
Let b = -31, let a = 3/5
simplify((1-(-31))^(3/5));
8
simplify((-1)^(3/5)*((-31)-1)^(3/5));
(1/5)
-8 (-1)
evalf(%);
-6.472135955 - 4.702282018 I
  댓글 수: 2
Alex
Alex 2018년 6월 15일
But what assumption should I provide to Matlab to make this simplified to (1-b)^a?
Walter Roberson
Walter Roberson 2018년 6월 15일
I am not sure. The obvious ones do not work.

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by