Maxima, operation between functions

  • Thread starter Thread starter fluidistic
  • Start date Start date
  • Tags Tags
    Functions Maxima
Click For Summary
SUMMARY

The discussion centers on simplifying the function P(beta) in Maxima, specifically transforming it from P(beta):=beta+7/Z to P(beta):=beta+7/(beta+3). The user attempted various definitions and commands without success, including P(beta,Z):=beta+7/Z and P(beta,Z(beta)):=beta+7/Z(beta). The solution was discovered by evaluating the cell P(beta), which successfully simplified the function as intended.

PREREQUISITES
  • Familiarity with Maxima 5.44.0 syntax and function definitions
  • Understanding of function simplification techniques in symbolic computation
  • Basic knowledge of variable substitution in mathematical functions
  • Experience with evaluating expressions in Maxima
NEXT STEPS
  • Explore advanced function definitions in Maxima 5.44.0
  • Learn about variable substitution techniques in Maxima
  • Research function simplification methods in symbolic computation
  • Practice evaluating complex expressions in Maxima
USEFUL FOR

Mathematicians, students, and software developers working with symbolic computation in Maxima who need to simplify functions and understand variable interactions.

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

Similar threads

  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 29 ·
Replies
29
Views
5K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 29 ·
Replies
29
Views
4K
  • · Replies 5 ·
Replies
5
Views
2K