Discussion about math, puzzles, games and fun. Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ °
| |
|
|
You are not logged in. #2 2006-01-07 00:21:10
Re: derivative..If you use Mathematica it's easy. IPBLE: Increasing Performance By Lowering Expectations. #3 2006-01-07 00:25:50
Re: derivative..Put the following code: Code:Print["The Function:"] f[x_]:=((x^2)Log[x])/ \[ExponentialE] f[x] Print["The Derivate:"] f'[x] Print["The roots:"] Solve[f'[x] == 0, x] IPBLE: Increasing Performance By Lowering Expectations. #4 2006-01-07 00:29:52
Re: derivative..And you can include Plots: Code:Plot[f[x], {x, 0, 10}, AxesLabel -> {x, f[x]}]
Plot[f[x], {x, 0, 1}, AxesLabel -> {x, f[x]}]
Plot[f'[x], {x, 0, 10}, AxesLabel -> {x, f'[x]}]
Plot[f'[x], {x, 0, 1}, AxesLabel -> {x, f'[x]}]IPBLE: Increasing Performance By Lowering Expectations. #5 2006-01-07 00:39:34
Re: derivative..Here is the program: Last edited by krassi_holmz (2006-01-07 00:41:21) IPBLE: Increasing Performance By Lowering Expectations. #7 2006-01-07 01:14:38
Re: derivative..Haven't you read Mathematica help? Last edited by krassi_holmz (2006-01-07 01:15:32) IPBLE: Increasing Performance By Lowering Expectations. #8 2006-01-09 08:20:49
Re: derivative..Derivative =0 Last edited by God (2006-01-09 08:21:56) |