KAlgebra: Difference between revisions

From KDE UserBase Wiki
(KAlgebra - A powerful Calculator for KDE 4)
 
(Corrected link)
(85 intermediate revisions by 8 users not shown)
Line 1: Line 1:
'''KAlgebra''' is a calculator with symbolic and analysis features that lets you plot 2D and 3D functions as well as to easily calculate mathematical expressions.
<languages />
<translate>
<!--T:1-->
{{EduBreadCrumbs}}


When you first open KAlgebra a blank window shows up, this is the main work area for calculus.
<!--T:2-->
{| cellpadding="10"
|[[Image:kalgebra.png|64px]]
|'''KAlgebra''' is a calculator with symbolic and analysis features that lets you plot 2D and 3D functions as well as to easily calculate mathematical expressions.<br />
It is part of the [http://edu.kde.org KDE Education Project].  
|}


Let's get started with a little example of how KAlgebra works, just type:
<!--T:4-->
::2+2
[[Image:Kalgebra_welcome.png|thumb|500px|center| 2D and 3D plots]]
Then type Return and KAlgebra will show you the result. So far it's easy.


However, KAlgebra is much more powerful than that, it started as a simple calculator, but now it's almost a CAS.
You can define variables this way:
::k:=3
And use them normally:
::k*4
And that will give you the result: 12
You can also define functions:
::f:=x->x^2
And then use them:
::f(3)
Which should return 9.
You can define a function with as many variables as you want:
::g:=(x,y)->x*y
The possibilities of defining functions are endless if you combine this withe the piecewise. Let's define the factor function:
::fact:=n->piecewise { n=0 ? 1, n=1 ? 1, ? n*fact(n-1) }
Yes! KAlgebra supports recursive functions. Give some values to n, to test it.
::fact(5)
::fact(3)


KAlgebra has recently started support for symbolic operations, to check it out, just type:
==First Steps with KAlgebra== <!--T:5-->
::x+x+x+x
or
::x*x
It doesn't work on some complex structures, though. Only basic support so far.


Moreover, KAlgebra has support for differentiation.
<!--T:11-->
An example of the syntax:
Here are some tutorials:
::diff(x^2:x)
* [[Special:myLanguage/KAlgebra/Console Tab| Using the console tab]].
* [http://tutorial.downloadatoz.com/kalgebra.html Drawing 3D Graphs]


If you have used KAlgebra, you will have noticed the syntax completion support, which is very helpful.
<!--T:12-->
Another resource that is useful in learning more about '''KAlgebra''' is the <menuchoice>Dictionary</menuchoice> tab. It contains examples of every function supported by '''KAlgebra'''. Maybe the best way to learn how to do things with '''KAlgebra'''.


Another resource that can be useful to learn more about KAlgebra comes with KAlgebra: The Dictionary tab
==Screenshots== <!--T:13-->


It contains examples of every function supported by KAlgebra. Maybe the best way to learn how to do things with KAlgebra.
<!--T:14-->
Here you can see some [[Special:myLanguage/KAlgebra/Screenshots|screenshots]]
 
==Documentation== <!--T:15-->
 
<!--T:16-->
* [https://docs.kde.org/stable/en/kdeedu/kalgebra/index.html The KAlgebra Handbook]
 
<!--T:21-->
* [http://swiftscythe.blogspot.com/2011/02/how-to-work-with-complex-numbers-in.html How to work with complex numbers in KAlgebra]
 
==Other== <!--T:17-->
 
<!--T:18-->
* [[Special:myLanguage/KAlgebra/Homework|Homework]] is a page which show some uses of KAlgebra in real world.
 
<!--T:19-->
* [http://edu.kde.org/applications/school/kalgebra/ The Project Page] contains further helpful links, including links needed for bug reporting or contacting the authors.  Here you will find information about mailing lists and the IRC channel.
 
 
 
 
 
<!--T:20-->
[[Category:Education]]
</translate>

Revision as of 16:04, 15 October 2014

Home » Applications » Education » KAlgebra

KAlgebra is a calculator with symbolic and analysis features that lets you plot 2D and 3D functions as well as to easily calculate mathematical expressions.

It is part of the KDE Education Project.

2D and 3D plots


First Steps with KAlgebra

Here are some tutorials:

Another resource that is useful in learning more about KAlgebra is the Dictionary tab. It contains examples of every function supported by KAlgebra. Maybe the best way to learn how to do things with KAlgebra.

Screenshots

Here you can see some screenshots

Documentation

Other

  • Homework is a page which show some uses of KAlgebra in real world.
  • The Project Page contains further helpful links, including links needed for bug reporting or contacting the authors. Here you will find information about mailing lists and the IRC channel.