Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
that's not correct.
a
starts as the string in front of the variable.for example in
"(x+7)^12"
it is the empty string""
, in"(-x+7)^12"
it is the minus sign"-"
, and in"(0x+7)^12"
it is the digit zero"0"
.in the second line this string is transformed to the numerical value. so for example
""
turns into1
,"-"
turn into-1
and"0"
turns into0
.now if
a
is0
then the variable isn't relevant and we only have to compute7^12
.