Creating list of point of a function & plotting the list
Needs Answer
The following was achieved using Maxima
I want to repeat the procedure using Geogebra for this for this under CAS
defined function
f(n):=(T2)/(T1)-((P2)/(P1))^((n-1)/(n))
defined some variables
T1:=100; P1:=1; P2:=12;
make n the subject via solving f(n) for n
solve(f(n),n)
used the RHS of equation & ZIP/SEQUENCE to generate x,y coordinates ...such that T2 is x-axis from 150 to 300 with an increment of 10 & on y-axis n will be calculated
Zip((T2, RightSide($)),T2,Sequence(T2,T2,150,300,10))
Now the last command gives error? ..& after I had generated points how do I get some line graph?
Comments have been locked on this page!