Solving simple equations
- To: mathgroup at smc.vnet.net
- Subject: [mg122681] Solving simple equations
- From: Mathieu <mathtd at gmail.com>
- Date: Sat, 5 Nov 2011 04:49:26 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
Mathematica seems to struggle with very simple equations: Solve[(A*n^a)^b/n == c, n] Solve::nsmet: This system cannot be solved with the methods available to Solve Reduce doesn't work either. Even if I add assumptions: Assuming[A > 0 && 1 > a > 0 && 1 > b > 0 && c > 0 && n > 0, Solve[(A n^a)^b/n == c, n]] Solve::nsmet: This system cannot be solved with the methods available to Solve. >> Is there a way for Mathematica to solve these equations? Many thanks, Mathieu
- Follow-Ups:
- Re: Solving simple equations
- From: Andrzej Kozlowski <akoz@mimuw.edu.pl>
- Re: Solving simple equations