Hard Math Question
#10
there will be some rules which i don't remember ofc :D but the input conditions are important


> f := (a^(m+n)/a^n)^m*(a^(n-m)/a^n)^(m-n);
print(`output redirected...`); # input placeholder
m (m - n)
/ (m + n)\ / (n - m)\
|a | |a |
|--------| |--------|
| n | | n |
\ a / \ a /

Shadow's output
> g := `assuming`([simplify(f)], [a > 0, m > 0, n > 0]);
print(`output redirected...`); # input placeholder
(m n)
a

Mael' output
> h := `assuming`([simplify(f)], [a::real, m::real, n::real]);
print(`output redirected...`); # input placeholder
m (m - n)
/ m\ / (-m)\
\a / \a /
Thanks given by:


Messages In This Thread
Hard Math Question - by #M|A#Wolf - 29 Jan 13, 12:56AM
RE: Hard Math Question - by Mael - 29 Jan 13, 01:02AM
RE: Hard Math Question - by Oracle - 29 Jan 13, 01:46AM
RE: Hard Math Question - by RCJD - 29 Jan 13, 01:54AM
RE: Hard Math Question - by Cho - 29 Jan 13, 02:05AM
RE: Hard Math Question - by Oracle - 29 Jan 13, 02:14AM
RE: Hard Math Question - by Habluka - 29 Jan 13, 02:41AM
RE: Hard Math Question - by Mael - 29 Jan 13, 02:58AM
RE: Hard Math Question - by Sveark - 29 Jan 13, 04:32AM
RE: Hard Math Question - by Alien - 29 Jan 13, 07:15PM
RE: Hard Math Question - by Marti - 29 Jan 13, 09:07PM
RE: Hard Math Question - by GDM - 29 Jan 13, 08:16PM
RE: Hard Math Question - by Habluka - 30 Jan 13, 05:40AM
RE: Hard Math Question - by Alien - 29 Jan 13, 09:20PM
RE: Hard Math Question - by al3rt - 30 Jan 13, 09:41PM