Questions tagged [graphing-functions]

For questions regarding the plotting or graphing of functions. For questions about the kinds of graphs with vertices and edges, use the (graph-theory) tag instead.

Given a real-valued function $f\colon \mathbf{R} \to \mathbf{R}$, the graph of $f$ is the set of all input-output pairs $(x,f(x))$ regarded as a set of points in the plane $\mathbf{R} \times \mathbf{R}$. Considering the graph of a function gives us a geometric perspective on the data that the function represents.

  • If the function $f$ is continuous, the graph of $f$ "looks continuous." That is, there are no gaps, and the graph is a connected curve.

  • If the function $f$ is differentiable, then it will contain no "sharp corners."

  • If we're thinking of the domain of the function as representing time, the the graph gives us a nice visualization of the change in outputs of the function over time.

A graph can be defined much more generally though. Let $\mathbf{k}$ be a local field, and suppose $f$ is a vector-valued function $f\colon \mathbf{k}^n \to \mathbf{k}^m$ where $f(x_1, \dotsc, x_n) = (y_1, \dotsc, y_m)$ and each coordinate $y_i$ of the output is a function of the $x_1, \dotsc, x_n$. In this setting, the graph of $f$ is the set of points

$$(x_1, \dotsc, x_n, y_1, \dotsc, y_m) \subset \mathbf{k}^{n+m}\,.$$

This general construction of the graph of a function can be useful in the study of algebraic geometry or the study of manifolds.

5041 questions
0
votes
1 answer

Distance time graph

a boat travel at a speed of 20 km/h in still water. the current in a river flows at 5 km/h so that downstream the boat can travel at 25 km/h and upstream it travels at only 15 km/h. The boat has only enough fuel for 3 hours. The boat leaves it’s…
Cate
  • 21
0
votes
1 answer

Is the level set of $f(x,y) = x^2 + y^2$ all the level curves for all constants $z$?

Maybe an example would help explain. If we sketch this graph it is a bowel shaped object and cut along the horizon at some value of z = constant we get a level curve. I am right so far? This curve is a circle that is 2 dimensional and sits in 3…
Sedumjoy
  • 1,569
0
votes
0 answers

What is the equation for this curve (approximately)?

I am trying to code a kind of parabolic curve to show on an LCD screen, however I can't seem to work it out. I need to be able draw it from the same spot at the bottom of the screen, but change its how aggressively curves. The closest I have is: for…
david_10001
  • 171
  • 5
0
votes
2 answers

Is it possible to determine the equation of any graph? (see picture)

I am working on a simulation and need to insert this graph as a current source and of course I can only do this by inserting the graph equation. However I'm not sure on how to obtain the equation of this graph. The graph shown is not symmetrical to…
0
votes
1 answer

How do I shift this function to the right by 1?

I have the function: $$y =13000e^{-0.075t}cos\left(\frac{2πt}{4}\right) | 0\le{t}\le{20}$$ Which creates the graph: What graphs currently looks like At the moment the largest y value is 13000, starting at t = 0 However it is meant to peak at t = 1…
david_10001
  • 171
  • 5
0
votes
1 answer

Proportional change for generating other from given rectangle.

This is in continuation of my earlier post here. On pg.#7-8, question #7 is about an alternate model of growth (i.e., proportional growth, herewith referred as P) and its comparison with the uniform growth model (herewith referred as U) used to…
jiten
  • 4,524
0
votes
1 answer

Uniform change for generating other from given rectangle.

This is in continuation of my earlier post here. On pg.#6-7, question #5 is about uniform growth used to form one rectangle from another by shrinking or expanding $x,y$ coordinates. The different parts of the question are attempted below with need…
jiten
  • 4,524
0
votes
0 answers

One point coordinates used to represent rectangle.

Am doing self--study from the book : The Shape of Algebra in the Mirrors of Mathematics, by Gabriel Katz, Vladimir Nodelman; and have issues. Luckily, the concerned first chapter is freely accessible here. The s/w Visumatica basically is an openGL…
jiten
  • 4,524
0
votes
1 answer

How to graph a lemniscate?

Need to graph the lemniscate of. Bernoulli in geogebra 3d in the xy plane at z=5. I know how to graph the cartesian equation but not at z=5.
User3910
  • 2,390
0
votes
1 answer

Graphing Functions - Hard Problem

Suppose $f(x)$ is a function that has this property: For all real numbers $a$ and $b$ such that $a
0
votes
0 answers

How to graph with style?

I want to graph a 3d surface $ z=x^2-y^2 $as transparent with bold lines$ z=x^2 $ and $z=-y^2.$ How to do this?
User3910
  • 2,390
0
votes
1 answer

Understanding contour plot

I would like some help in understanding the following contour plot. Contour plot of Ambient Temperature Vs Current in a conductor I can see that as the ambient temperature increases the conductor temperature increases. I can also see that as the…
0
votes
1 answer

How to rotate the graph $z=f(x)$ towards $y$ so that $z=f(x,y)$?

Given z=x^3 rotate this curve towars the y axis about the z axis so that z=f(x,y) but with the same curve as z=x^3. Write z=f(x,y)=f(x^3,theta). Eventually z=y^3 when theta =90 degrees. I am guessing that the projection onto the x and y axes are…
User3910
  • 2,390
0
votes
1 answer

Does every shape on a graph fit an equation?

For example, if someone draws a circle onto a graph, this will fit an equation of $(x-a)^2+(y-b)^2=r^2$. However, if someone were to draw another shape, made up of seemingly random points (such as a portrait), would there be an equation that would…
0
votes
0 answers

"Offsetting" an equation

I use Autocad a lot, and a function I commonly use is offset, which takes a line and offsets it whatever distance you specify. An example would be that if you take a circle with a radius of $5$ ft and offset it $3$ ft, it gives you a new radius of…