Maxima, operation between functions

  • Thread starter Thread starter fluidistic
  • Start date Start date
  • Tags Tags
    Functions Maxima
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 1K views
fluidistic
Gold Member
Messages
3,934
Reaction score
286
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   Reactions: Greg Bernhardt