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

How can I find $ |\{c : f(f(c))=f(c)\}| $ when only given the graph of $y=f(x)$?

$|A=\{a : f(a)=a\}|$ can be found by counting the number of intersections of $y=f(x)$ and $y=x$. $|B=\{b : f(f(b))=b\}|$ can be found by counting the number of intersections of $y=f(x)$ and $y=a (a\in A)$. But how can I find $|C=\{c : f(f(c))=f(c)…
Verthele
  • 159
  • 5
0
votes
2 answers

Actual Meaning of a Curve

Throughout my math education up until now (1st year of college) I had been told by all my math teachers that a curve that is drawn is "some letter parentheses $x$" (e.g. $f(x)$, $g(x)$, etc.). But one day I realized that $f(x)$ (let's just work with…
user532874
0
votes
1 answer

Reverse engineer simple curved growth between 2 values

This is probably super basic, but I'm not very good at this stuff so I'm trying it here :) I have some values that I know the plot values of, but need the actual formula to determine future values dynamically in my programming code. I have the…
0
votes
1 answer

How to get an equation of a line, given an equation for y and an equation for x?

I have to generate a graph, with $y = e^{a\cdot t} - 1$ and $x = e^{b\cdot t} - 1 $ for all possible values of t. Constants a & b are given. In other words, the curve generated will be the locus of all points having all possible values of…
0
votes
2 answers

Find plausible equation for a curve

Can someone give me an equation that could generate the graph below? An equation where as X decreases, Y approaches zero but will never reach zero.
Lan SJ
  • 11
0
votes
0 answers

Calculate growth rate of graph

Lets make my scenario not generic just so that i could use particular terms Say i have a graph of population per year of someplace over some decades Lets say the graph is like this Is there a way by which to put a number on speed of growth, not…
0
votes
1 answer

The velocity time graph of a particle moving along a straight line is shown in the following figure

If a particle starts its motion from x=-4m, then which one represents the a-t graph? The first figure is the question figure, the second figure contains the answer, and the third one contains the other options. Options Why is this the right answer…
Aditya
  • 6,191
0
votes
0 answers

Is there a definition or convention about the initial part of a plot?

The lecturer is saying Initially the gradient is positive and "fairly constant", but for it drops to zero at the peak, it then becomes negative for a period before returning to zero. figure_1 assume the initial part is the time frame between the…
JJJohn
  • 1,436
0
votes
1 answer

Find X for Y on a sigmoid curve / function

Note: i write this script in javascript. But any knowledge on how to produce this function is welcome! In the following graph you see the s-curve or sigmoid curve. The blue line shows my value Y (y-axis) (y=75). The curve has a scale of [0,0] to…
0
votes
2 answers

Can $f(x)=ax^{2k-1}+...$ and $g(x)=bx^{2n}+...$ ($k,n \in \mathbb N$) have the same shape at some interval?

When $k \in \mathbb N$ and $n \in \mathbb N$ $f(x)$ is a $2k-1$ degree polynomial $g(x)$ is a $2n$ degree polynomial. By 'having the same shape at some interval', I mean that when given proper $f(x)$ and $g(x)$ , the graphs of $f(x)$ and $g(x)$ are…
Verthele
  • 159
  • 5
0
votes
2 answers

How to sketch graphs for sums of absolute value expressions?

I know how to sketch graphs for expressions like $|x+a|+|x+b|=k$ and the ones involving only one variable but how would I go about sketching the same for expressions like $$|x+y|+|2y-x|=4$$ I tried to make cases and go about sketching them interval…
0
votes
1 answer

Website for drawing math graphs

Is there any website where I can label and draw a mathematical graph using equations instead of a table of coordinates?
Tony
  • 1
0
votes
1 answer

Syntax question regarding function plotting in Mathematica.

Y = (Sin[2 [Pi]t]) (1 + (1/5) Sin[6 [Pi]t] + (1/10) Sin[8 [Pi]t]) I'm trying to plot this function in Mathematica, however when I run Plot[Y, {t, -15, 15}] nothing will show up on the graph. I think the problem is I'm entering the syntax wrong for…
Joe
  • 15
  • 4
0
votes
1 answer

How do normal shapes translate from a confined infinite graph to our normal coordinate plane?

Excuse the potato quality drawings below. First image: In a graph where the distance from one to infinity one equal to the distance from one to the infinitesimal, how would normal shapes that are drawn on the graph below translate in the normal…
Joe
  • 534
0
votes
1 answer

How to plot this kind of bar using whatever plot tools?

I want to plot this kind of figure to show the progress of an event. The highlighted parts show detected instances (Here's an example of what I want to plot). As you can see, there're in total 3 models and one ground truth, and I want to compare…
Evan
  • 3