Maxima, operation between functions

  • Thread starter Thread starter fluidistic
  • Start date Start date
  • Tags Tags
    Functions Maxima
AI Thread Summary
The discussion centers on a user's difficulty in simplifying a function P(beta) defined as beta + 7/Z into the form beta + 7/(beta + 3). Despite multiple attempts with different command definitions, the user was unable to achieve the desired simplification. Ultimately, the user resolved the issue by evaluating the function P(beta) directly, which led to the correct simplification. This highlights the importance of direct evaluation in function simplification within mathematical software.
fluidistic
Gold Member
Messages
3,928
Reaction score
272
Hi guys, I've used google and Maxima's manual but couldn't find what I'm looking for.
I have defined a function similar to
Code:
Z(beta):=beta+3;
, and another function
Code:
P(beta):=beta+7/Z;
and I am not able to "simplify" P(beta) as beta+7/(beta+3).
I've tried several commands but all failed. I even tried to define
Code:
P(beta):=beta+7/%o1;
,
Code:
P(beta,Z):=beta+7/Z;
,
Code:
P(beta,Z(beta)):=beta+7/Z(beta);
and
Code:
P(beta,Z):=beta+7/Z(beta);
; all failed.
Any idea on how I could reach my goal?
 
Physics news on Phys.org
Problem solved guys! I found it by "luck"... Answer: evaluate the following cell:
Code:
P(beta);
 
  • Like
Likes Greg Bernhardt

Similar threads

Replies
4
Views
1K
Replies
1
Views
1K
Replies
1
Views
2K
Replies
2
Views
2K
Replies
2
Views
2K
Replies
9
Views
2K
Replies
5
Views
2K
Back
Top