ATAR Notes: Forum
VCE Stuff => VCE Mathematics => VCE Mathematics/Science/Technology => VCE Subjects + Help => VCE Mathematical Methods CAS => Topic started by: hargao on December 23, 2011, 02:44:51 am
-
When I started my methods and spesh practice papers some time in November, these really anal questions kept on coming up ):
So I defined these functions in my brand spanking new Ti-nspire cas which made life a little bit more bearable. I’m new to posting on atarnotes forum, so please be nice haha (:
Anal question type 1 (simultaneous linear equation 0,1,infinite solution questions)
x + my = 7)
x + 4y = 13)
Find m such that there are
i) no solutions
ii) one solution
iii) infinite solutions
We can write a function in the ti calculators which automatically finds the solution set to such a question.
So for the general problem of


where c,f are constants and a,b,d,e may be constants or linear factors in terms of the variable “g”
input  = \{solve(a \cdot e=b\cdot d \; and \; b\cdot f\neq c\cdot e,g), solve(a\cdot e\neq b\cdot d,g),solve(a\cdot e=b\cdot d \; and \;b\cdot f=c\cdot e,g)\} )
output 
1. The first element of the set in the ouput tells us the requirements for no solutions to the set of linear equations
2. The second element of the set tells us the requirements for one solution to the set of linear equations
3. The third element of the set tells us the requirements for infinite solutions to the set of linear equations
Example
Solve the original question above
we let:
instead of a, let a=m+3
instead of b, let b=m
instead of c, let c=7
instead of d, let d=m+2
instead of e, let e=4
instead of f, let f=13
instead of g, let g=m
input
instead of )
output is ,false\})
1. For there to be no solutions, 
2. For there to be one solution, 
3. For there to be infinite solutions, there is
that satisfies such a condition
Anal question type 2 (tedious left hand right hand area estimation thingy)
Often we get asked to find the left-hand estimate or right-hand estimate of the area bounded by a curve and the x axis (stupid pointless vcaa question that can be done on a computer with much higher accuracy)
For Left-Hand Estimate
input =\frac{c-b}{n} \sum_{k=0}^{n-1}(a\mid b+\frac{c-b}{n}\cdot k))
For Right-Hand Estimate
input =\frac{c-b}{n} \sum_{k=1}^{n}(a\mid b+\frac{c-b}{n}\cdot k) )
Parameter “a” is where you put in the function that you want to evaluate, say )
Parameter “b” is where you put in the lower limit of the integral you are evaluating
Parameter “c” is where you put in the upper limit of the integral you are evaluating
Parameter “n” is where you put in the number of rectangles you are splitting the integral into.
Example
Use the trapezium rule to find the area bound by the curves
with rectangle width of 0.5
So



as there are 100/0.5 rectangles
Therefore input
to find the trapezoidal rule estimation of 
Anal question type 3 (stationary point scavenging hunt)
Pointless max-min questions (method also suited to drawing graphs and various types of spesh applications questions)
Input =\{solve(\frac{d}{db}(a)=0 \; and \; \frac{d^2}{db^2}(a)<0,b),solve(\frac{d}{db}(a)=0 \; and \; \frac{d^2}{db^2}(a)>0,b),solve(\frac{d}{db}(a)=0 \; and \; \frac{d^2}{db^2}(a)=0,b)\} )
Usage
Parameter “a” is the function
Parament “b” is the variable
You can also limit the domain of the function (place a restriction on b)
Eg \mid 0<x<4)
output 
1. The first element gives the local maximum points
2. The second element gives the local minimum points
3. The third element gives the possible locations stationary points of inflection (saddle points)
note: you need to use the first derivative test to verify the nature of these points. You may change the defined function to include a higher order derivative test, ie the third derivative test, but this may cause the potential unfortunate loss of local min. and max. points depending on the function evaluated.
Example
Find the stationary points and their nature for the function =x^4-3x^3+3x^2-x+5)
Input )
Output 
1. There are no local maximum points
2. There is a local minimum point at x=0.25
3. There may be a stationary point of inflection at x=1. Use first derivative test or third derivative test to verify that it is a stationary point of inflection.
(Not) anal (and trivial) question type 4
Finding the average rate of change of a function
=\frac{(a\mid x=c)-(a\mid x=b)}{c-b})
Self-explanatory, and sort of pointless
(Not) anal (and trivial) question type 5
Finding the mean value of a function
=\frac{1}{c-b} \int_{b}^{c} a \, \mathrm{d}x )
Self-explanatory, and sort of pointless
Hopefully these might help you in some way, and maybe inspire you to define your own super big and awesome functions XD
-
Nice, added to the resource list: Re: Mathematical Methods Guides and Tips :)
-
sorry! made an error in the statpoint(a,b) function, fixed now.