Taylor SeriesPower FunctionDefinition: A power function has the form
Author: John J Weber III, PhD Corresponding Textbook Sections:
Section 11.10 – Taylor and Maclaurin Series
Section 11.11 – Applications of Taylor Polynomials
NOTE: You may use of technology to rewrite exponential expressions on all Assessments without showing any work.
Mathematica
x109109101(* Example: Rewrite (4x^2)^(2n+1) *)2Together[(4 x^2)^(2 n + 1)]3
4(* Alternatively *)5PowerExpand[(4 x^2)^(2 n + 1)]6
7(* Alternatively *)8ExpandAll[(4 x^2)^(2 n + 1), x]9
10(* Alternatively *)11Collect[(4 x^2)^(2 n + 1), x]Warnings:
Be very careful with the syntax. Syntax is the set of rules on how to write computer code. Every software program has its own unique syntax. Some basic Mathematica syntax is located at: http://www.jjw3.com/TECH_Common_Functions.pdf.
You may need parens,
Together[ ] has at least one arguments:
The exponential expression to be rewritten.
PowerExpand[ ] has at least one arguments:
The exponential expression to be rewritten.
ExpandAll[ ] has at least two arguments:
The exponential expression to be rewritten;
Either the variable
Collect[ ] has at least two arguments:
The exponential expression to be rewritten;
Either the variable
For help on using the Together[ ] function:
In Mathematica, execute the code:
Click on
Click on local
Read how to use the Together[ ] function – you will be able to copy-paste code.
Remember, correct Mathematica code will be all black except for variables.
To execute code (including comment codes), press and hold the SHIFT key and press the ENTER key.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License [http://creativecommons.org/licenses/by-nc-sa/4.0/].
Created: Monday, 15 November 2021 - 01:41 (EST) Created: Sunday, 9 April 2023 - 20:21 (EDT)