0

I have this function: Plot[{(sin (x)), (sin^2 x)}, {x, -2*[Pi], 3*[Pi]}]

When i'm trying to execute this function in Mathematica, i've got only this graph: sin(x), sin^2(x)

How can i set to see the lines of the graph in Mathematica? In wolfram alpha it's ok, here not.

Thanks.

nykolas
  • 184
  • 1
  • 6
  • 16

1 Answers1

3

You need to use the correct syntax, try

Plot[{Sin[x], Sin[x]^2}, {x, -2 Pi, 2 Pi}]
b.gatessucks
  • 1,242
  • 1
  • 15
  • 19