Need Help Solving Problems in Mathematica

  • Thread starter Thread starter TitoSmooth
  • Start date Start date
  • Tags Tags
    Mathematica
Click For Summary

Homework Help Overview

The discussion revolves around using Mathematica to graph functions and analyze their properties, including finding crossing points, terminal velocity, and continuity of a given function.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning

Approaches and Questions Raised

  • Participants discuss how to graph two functions simultaneously and zoom in to identify their intersection points. There are inquiries about calculating terminal velocity and its percentage, as well as checking the continuity of a function.

Discussion Status

Some participants have provided guidance on how to correctly format the plotting commands in Mathematica. There is an ongoing exploration of whether certain functions can be used for finding limits and terminal velocity, with suggestions for alternative methods if limitations exist.

Contextual Notes

Participants express challenges with Mathematica's syntax and seek resources for better understanding its commands. There is a mention of the original poster's lack of computer proficiency, which may affect their ability to navigate the software effectively.

TitoSmooth
Messages
158
Reaction score
6
How do I graph f(x)=x^5-x & g(x)=2 on the same x-y system and zoom into find the crossing points of these 2 functions?

how do I find the terminal velocity(t->infinity) and find 98% of its terminal velocity?

1st step. take the derivative v=24.61(1-(0.27300^t)

then I graph it. but how to find the terminal velocity(t-> infinity) and 98% of it?

How do I check if f(x)=Sqrt of 2+tan^2x.

If it is continuous or not, then find x values corresponding to discontinuities?

This is using Mathematica btw. Thanks

also. is there a help guide that can help me search for commands or a tutorial in layman terms? Mathematica is killing me because I am not computer savvy.

Thanks
 
Physics news on Phys.org
Plot[{f[x] == x^(5) - x, g[x] == 2}, {x, -100, 100}] i got this for the first question but my graph is blank.
 
You don't need to write f[x] and g[x] in the plot.


Plot[{x^(5) - x, 2}, {x, -100, 100}] will work.
 
Code:
f[x_] := x^5 - x;
g[x_] := 2;
Plot[{f[x], g[x]}, {x, -100, 100}]

then

Code:
Plot[{f[x], g[x]}, {x, -2, 2}]

etc.

Remember that Mathematica is FANATIC about correct capitalization and use of {} versus [] versus () and = versus := versus == and there is even an === and all those are completely different. Make ANY tiny mistake in anyone of those and you will get incorrect results or error messages you don't know what to do with or even nothing at all.

For your terminal velocity question, are you allowed to use the Limit function in Mathematica? If so then look that up in the help system. If not then perhaps repeatedly graphing things over different ranges and trying to estimate the value seems like the only use of Mathematica i can imagine at the moment.

For help you can Google

Mathematica tutorial

or

Mathematica square root

or similar things like that and see if the top few results give you the hint you need.
 

Similar threads

  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 6 ·
Replies
6
Views
5K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 1 ·
Replies
1
Views
1K