Solver GRAPH a logarithm
Algebra
->
Exponential-and-logarithmic-functions
-> Solver GRAPH a logarithm
Log On
Algebra: Exponent and logarithm as functions of power
Section
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Source code of 'GRAPH a logarithm'
This Solver (GRAPH a logarithm)
was created by by
ichudov(507)
:
View Source
,
Show
,
Put on YOUR site
About ichudov
:
I am not a paid tutor, I am the owner of this web site!
==section input Graph a function log( *[input base=1/3], x ). ==section solution perl $dummy = 1; my $s = "graph( 500, 500, -2, 10, -10, 10, log( $base, x ) )"; print "This is the command for my <A HREF=/services/rendering/>formula plotting system</A>: {{{ $s }}}\n\n\n $s"; ==section output dummy ==section check base=1 dummy=1 ==section practice perl if( randint( 0, 3 ) ) { $base = randint( 2, 7 ); } else { $base = "1/" . randint( 2, 7 ); }