Plot Polynomial Q10[x] with Variables x & t, Range 0-1

  • Thread starter Thread starter nalkapo
  • Start date Start date
  • Tags Tags
    Mathematica
Click For Summary
SUMMARY

The discussion focuses on plotting the polynomial function Q10[x] defined as Q10[c_, x_, t_] := c*(1 - (t - x)^2)^10 using the variables 'x' and 't' within the range [0, 1]. The user initially sought assistance in plotting this function in a 3D coordinate system but later realized that plotting two functions simultaneously in R^2 was not feasible. The final solution involved simplifying the problem to one variable, which allowed for successful plotting using the Plot3D function in Mathematica.

PREREQUISITES
  • Understanding of polynomial functions and their properties
  • Familiarity with Mathematica syntax and functions
  • Knowledge of 3D plotting techniques
  • Basic concepts of coordinate systems, specifically R^2 and R^3
NEXT STEPS
  • Learn how to use the Plot3D function in Mathematica for visualizing multivariable functions
  • Explore the implications of using multiple variables in polynomial equations
  • Study coordinate transformations between R^2 and R^3
  • Investigate advanced plotting techniques in Mathematica, such as manipulating ViewPoint and other graphical options
USEFUL FOR

Mathematicians, data scientists, and educators interested in visualizing polynomial functions and enhancing their skills in Mathematica for 3D plotting.

nalkapo
Messages
28
Reaction score
0
I want to plot this polynomial:
Q10[x_] := c* (1 - (t - x)^2)^10

I defined variable 't' in f(t) and 'x' in the polynomial Q10[x].
how can I plot this polynomials with variebles x and t? the range-interval will be (for both x and t): [0,1].

can you write the code please...
Thanks...

Edit: by the way, c~ 3.1. it will be less than Square root[10]
 
Last edited:
Physics news on Phys.org
Is this anything like what you are trying to accomplish?

c = 3.1;
Q10[c_,x_,t_] := c*(1 - (t - x)^2)^10;
Plot3D[Q10[c,x,t], {x, 0, 1}, {t, 0, 1}, ViewPoint->{-1.2, -2.4, 2}]
 
Thanks Bill,
I figured it out. I needed to plot in coordinate system, R^2.
actually i didn't give all the details. i tried to use two variables to plot two functions in R^2 but it is not possible. I decreased to one variable and problem was solved.
Thanks for help. at least I got some idea about 3D plot ;)
 

Similar threads

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