How to print text with numerical results in Mathematica

  • Context: Mathematica 
  • Thread starter Thread starter Pengwuino
  • Start date Start date
  • Tags Tags
    Mathematica
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 18K views
Pengwuino
Gold Member
Messages
5,112
Reaction score
20
Ok i got a problem. Heres my mathematica file.

Im trying to find the critical points and describe them but i don't know how to print stuff in mathematica. How can i make it say instead of like putting...

d[x1, y1]

to find the descriminant (i already setup the function as you can see in the file). How can I do it so the actual output will say "The discriminant of this point is" whatever the number is (in this case, 238) instead if it just spitting out the number alone? Is there like a print command? Thanks for the help :)
 

Attachments

Physics news on Phys.org
ahhh help me guys :D
 
Pengwuino said:
Ok i got a problem. Heres my mathematica file.

Im trying to find the critical points and describe them but i don't know how to print stuff in mathematica. How can i make it say instead of like putting...

d[x1, y1]

to find the descriminant (i already setup the function as you can see in the file). How can I do it so the actual output will say "The discriminant of this point is" whatever the number is (in this case, 238) instead if it just spitting out the number alone? Is there like a print command? Thanks for the help :)

Well, I didn't look at your file, something about cookies on my machine or whatever. But you can use a Print commant in Mathematica:

Print["The discrimant is: ",d[x1,y1]];