 
 
 
 
 
 
Re: notation help: f(x) = (sin x)^(1/3)
- To: mathgroup at smc.vnet.net
- Subject: [mg29980] Re: notation help: f(x) = (sin x)^(1/3)
- From: dooglefish at aol.communicate (D.F.)
- Date: Fri, 20 Jul 2001 03:28:43 -0400 (EDT)
- References: <9j65f7$2fv$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
>Subject: [mg29980] notation help: f(x) = (sin x)^(1/3)
>From: Tim 9-23 bendoftimeb at stny.rr.com 
To: mathgroup at smc.vnet.net
>Date: 7/19/01 4:24 AM Eastern Daylight Time
>Message-id: <9j65f7$2fv$1 at smc.vnet.net>
>
>How do I plot this.  I must not be entering it correctly.  It's the
>plot of the cube root of the Sine function.
>
>Plot[[Sin[x]]^(1/3), {x, -10, 10}] isn't working.  Thanks.  
>
ts[x_] := Sin[x]^(1/3)
Plot[ Evaluate[ts[x]], {x, -10, 10} ]
-D

