KAlgebra/Homework: Difference between revisions

From KDE UserBase Wiki
(Added a fluid physics example problem.)
m (fix the last tag (i hope))
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages />
<languages />
<translate>
<translate>
<!--T:1-->
This page shows some uses of '''KAlgebra''' in real world problems.
This page shows some uses of '''KAlgebra''' in real world problems.


== Combinatorial example==
== Combinatorial example== <!--T:2-->


<!--T:3-->
We have 6 people who want to know how to get around a table with 6 chairs.
We have 6 people who want to know how to get around a table with 6 chairs.


<!--T:4-->
We know that 6 people can get around the table with this configuration
We know that 6 people can get around the table with this configuration


<!--T:5-->
:{|  
:{|  
|p1 || p2 || p3 || p4 || p5 || p6
|p1 || p2 || p3 || p4 || p5 || p6
Line 19: Line 23:
|}
|}


<!--T:6-->
And so on.
And so on.


<!--T:7-->
We notice that the last item rotates its position by 1, the fifth rotates position by 2, the fourth rotates position by 3, the third rotates position by 4, the second rotates position by 5 and first rotates position by 6.  So we can write down a simple formula:
We notice that the last item rotates its position by 1, the fifth rotates position by 2, the fourth rotates position by 3, the third rotates position by 4, the second rotates position by 5 and first rotates position by 6.  So we can write down a simple formula:


<!--T:8-->
{{Input | 1=6*5*4*3*2*1}}
{{Input | 1=6*5*4*3*2*1}}


<!--T:9-->
Let's write this into '''KAlgebra''' console, and the answer returned is:
Let's write this into '''KAlgebra''' console, and the answer returned is:
{{Output | 1=<nowiki>(((((1)*2)*3)*4)*5)*6
{{Output | 1=<nowiki>(((((1)*2)*3)*4)*5)*6
=720</nowiki>}}       
=720</nowiki>}}       


<!--T:10-->
This kind of arrangement of things around some position, where the position number is equal to the number of things, is called "permutation".
This kind of arrangement of things around some position, where the position number is equal to the number of things, is called "permutation".


<!--T:11-->
Let's try to call in '''KAlgebra''' the permutation function:
Let's try to call in '''KAlgebra''' the permutation function:


<!--T:12-->
{{Input|1=factorial(6)}} and we get  
{{Input|1=factorial(6)}} and we get  
{{Output|1=<nowiki>factorial(6)
{{Output|1=<nowiki>factorial(6)
=720</nowiki>}}
=720</nowiki>}}


<!--T:13-->
It's the same result as you can see.
It's the same result as you can see.


==Probability example ==
==Probability example == <!--T:14-->


<!--T:15-->
Let's roll a dice.  We want to know the probability of one face appearing.
Let's roll a dice.  We want to know the probability of one face appearing.
        
        
We can define positive probability, the result of the event being favourable to us, and negative probability, the result of the event being unfavourable to us.
We can define positive probability, the result of the event being favourable to us, and negative probability, the result of the event being unfavourable to us.


<!--T:16-->
So you have to pick only one face:
So you have to pick only one face:


<!--T:17-->
:probability = face picked / total face = 1/6
:probability = face picked / total face = 1/6


<!--T:18-->
So now we know that when a dice is rolled there is a 1/6 of probability that a face we chose will come up.
So now we know that when a dice is rolled there is a 1/6 of probability that a face we chose will come up.


<!--T:19-->
We can set a simple function in '''KAlgebra''' to take this formula in a simple way:
We can set a simple function in '''KAlgebra''' to take this formula in a simple way:


<!--T:20-->
{{Input|1=<nowiki>probability:=(favorable,total)->favorable/total</nowiki>}}
{{Input|1=<nowiki>probability:=(favorable,total)->favorable/total</nowiki>}}


== Numerical Theory ==
== Numerical Theory == <!--T:21-->


<!--T:22-->
Let's say that we want to know the sum of all numbers between a bounded interval, for instance 1 - 100.  We have to do the sum of all numbers from 0 to 100 if we don't know the rule to get them.
Let's say that we want to know the sum of all numbers between a bounded interval, for instance 1 - 100.  We have to do the sum of all numbers from 0 to 100 if we don't know the rule to get them.
      
      
'''KAlgebra''' offers a great facility to this task. Let's write in console:
'''KAlgebra''' offers a great facility to this task. Let's write in console:


<!--T:23-->
{{Input|1= sum(x: x=1..100)}}
{{Input|1= sum(x: x=1..100)}}
      
      
Line 67: Line 87:
= 5050</nowiki>}}
= 5050</nowiki>}}


<!--T:24-->
The syntax indicate this:
The syntax indicate this:


<!--T:25-->
:1. Bound x as variable
:1. Bound x as variable
:2. Take first value of x
:2. Take first value of x
Line 76: Line 98:
:N. Take the last value of x and add the last value of x
:N. Take the last value of x and add the last value of x


== Electronic ==
== Electronic == <!--T:26-->


===Example 1===
===Example 1=== <!--T:27-->


Let's take a simple circuit a and port with two inputs and one output. To resolve it in '''KAlgebra''' we will write
<!--T:28-->
Let's take a simple AND gate with two inputs and one output. To resolve it in '''KAlgebra''' we will write


<!--T:29-->
{{Input|1=and(variable1, variable2)}}
{{Input|1=and(variable1, variable2)}}


<!--T:30-->
from which we will get the and value of the input as output.
from which we will get the and value of the input as output.


===Example 2===
===Example 2=== <!--T:31-->
    
    
We have a simple circuit: a battery of 3V and two electrical resistances (R1 and R2) put on parallel of 3kOhm. We want to get the current circulating in the circuit.
We have a simple circuit: a battery of 3V and two electrical resistances (R1 and R2) put on parallel of 3kOhm. We want to get the current circulating in the circuit.


<!--T:32-->
We have first to calculate the value of the electric resistance expressed according to the law:
We have first to calculate the value of the electric resistance expressed according to the law:


:TotalResistance = (1/R1 + 1/R2)^-1
<!--T:33-->
:TotalResistance = (1/R1 + 1/R2)<sup>-1</sup>
:Current = Voltage/TotalResistance
:Current = Voltage/TotalResistance


<!--T:34-->
Let's write a simple function in '''KAlgebra''' to do this:
Let's write a simple function in '''KAlgebra''' to do this:


<!--T:35-->
{{Input|1=totalresistance:=(R1,R2)->(1/R1+1/R2)^-1
{{Input|1=totalresistance:=(R1,R2)->(1/R1+1/R2)^-1
current:=(voltage,totalresistance)->voltage/totalresistance}}
current:=(voltage,totalresistance)->voltage/totalresistance}}


<!--T:36-->
Let's see what we get:
Let's see what we get:
{{Input|1=current(3, totalresistance(3000, 3000))}}
{{Input|1=current(3, totalresistance(3000, 3000))}}
Line 106: Line 136:




==Fluid==
==Fluid== <!--T:37-->


===Example Problem with Same Material, but Different Volumes and Temperatures===
===Example Problem with Same Material, but Different Volumes and Temperatures=== <!--T:38-->


<!--T:39-->
Now, what if we need to know the final temperature when we mix  40L of 15°C water with 30L of 70°C water?
Now, what if we need to know the final temperature when we mix  40L of 15°C water with 30L of 70°C water?
Using conservation of energy, we know that the initial and final thermal energies are the same, so the final energy is equal to the energy of the first fluid plus the energy of the second fluid(using U for internal energy):<br>
Using conservation of energy, we know that the initial and final thermal energies are the same, so the final energy is equal to the energy of the first fluid plus the energy of the second fluid(using U for internal energy):<br />
:U(final) = U1 + U2
:U<sub>final</sub> = U1 + U2


Internal energy is equal to the volumetric heat capacity times volume times temperature:<br>
<!--T:40-->
Internal energy is equal to the volumetric heat capacity times volume times temperature:<br />
:U = C*V*T
:U = C*V*T


So C(final)*V(final)*T(final) = C1*V1*T1 + C2*V2*T2
<!--T:41-->
So C<sub>final</sub>*V<sub>final</sub>*T<sub>final</sub> = C1*V1*T1 + C2*V2*T2


And since the heat capacities are all the same and cancel out, and the final volume is the sum of the two initial volumes:<br>
<!--T:42-->
:(V1+V2)*T(final) = V1*T1 + V2*T2
And since the heat capacities are all the same and cancel out, and the final volume is the sum of the two initial volumes:<br />
:(V1+V2)*T<sub>final</sub> = V1*T1 + V2*T2
::or
::or
:T(final) = (V1*T1 + V2*T2)/(V1+V2)
:T<sub>final</sub> = (V1*T1 + V2*T2)/(V1+V2)


We can then either use this directly in KAlgebra:
<!--T:43-->
We can then either use this directly in '''KAlgebra''':
{{Input |<nowiki>(40*15 + 30*70)/(40 + 30)
{{Input |<nowiki>(40*15 + 30*70)/(40 + 30)
</nowiki>}}
</nowiki>}}
Line 132: Line 167:
{{Input |<nowiki>finalTemp:=(v1,t1,v2,t2)->(v1*t1 + v2*t2)/(v1+v2)</nowiki>}}
{{Input |<nowiki>finalTemp:=(v1,t1,v2,t2)->(v1*t1 + v2*t2)/(v1+v2)</nowiki>}}


<!--T:44-->
Which we can then use like this:
Which we can then use like this:
{{Input |<nowiki>finalTemp(40,15,30,70)
{{Input |<nowiki>finalTemp(40,15,30,70)
Line 138: Line 174:
=38.5714</nowiki>}}
=38.5714</nowiki>}}


===Example Problem with Different Fluids===
===Example Problem with Different Fluids=== <!--T:45-->
Now, suppose the two fluids have different volumetric heat capacities, such as 4180 J/(L*K) for the first liquid(water), and 1925 J/(L*K) for the second liquid(ethanol).
We will need to refer back to the equation:<br>
:C(final)*V(final)*T(final) = C1*V1*T1 + C2*V2*T2


The resultant heat capacity will be the average of the capacities of the first and second fluids, weighted by volume(since it is a volumetric heat capacity rather than mass- or molar-specific):<br>
<!--T:46-->
:C(final) = (C1*V1 + C2*V2)/V(final)
Now, suppose the two fluids have different volumetric heat capacities, such as 4180 J/(L*K) for the first liquid (water), and 1925 J/(L*K) for the second liquid (ethanol).
We will need to refer back to the equation:<br />
:C<sub>final</sub>*V<sub>final</sub>*T<sub>final</sub> = C1*V1*T1 + C2*V2*T2


And plugging this into the previous equation, we get:<br>
<!--T:47-->
:(C1*V1 + C2*V2)*T(final) = C1*V1*T1 + C2*V2*T2
The resultant heat capacity will be the average of the capacities of the first and second fluids, weighted by volume(since it is a volumetric heat capacity rather than mass- or molar-specific):<br />
:C<sub>final</sub> = (C1*V1 + C2*V2)/V<sub>final</sub>
 
<!--T:48-->
And plugging this into the previous equation, we get:<br />
:(C1*V1 + C2*V2)*T<sub>final</sub> = C1*V1*T1 + C2*V2*T2
::or
::or
:T(final) = (C1*V1*T1 + C2*V2*T2)/(C1*V1 + C2*V2)
:T<sub>final</sub> = (C1*V1*T1 + C2*V2*T2)/(C1*V1 + C2*V2)


<!--T:49-->
And either use this formula directly:
And either use this formula directly:
{{Input |<nowiki>(4180*40*15 + 1925*30*70)/(4180*40+1925*30)
{{Input |<nowiki>(4180*40*15 + 1925*30*70)/(4180*40+1925*30)
Line 157: Line 198:
=29.1198</nowiki>}}
=29.1198</nowiki>}}


<!--T:50-->
Or write a function if we want to repeat the calculation:
Or write a function if we want to repeat the calculation:
{{Input |<nowiki>finalTemp2:=(c1,v1,t1,c2,v2,t2)->(c1*v1*t1 + c2*v2*t2)/(c1*v1+c2*v2)
{{Input |<nowiki>finalTemp2:=(c1,v1,t1,c2,v2,t2)->(c1*v1*t1 + c2*v2*t2)/(c1*v1+c2*v2)
</nowiki>}}
</nowiki>}}


<!--T:51-->
Which we can then use like this:
Which we can then use like this:
{{Input |<nowiki>finalTemp2(4180,40,15,1925,30,70)
{{Input |<nowiki>finalTemp2(4180,40,15,1925,30,70)
Line 166: Line 209:
{{Output |<nowiki>finalTemp2(4,180, 40, 15, 1,925, 30, 70)
{{Output |<nowiki>finalTemp2(4,180, 40, 15, 1,925, 30, 70)
=29.1198</nowiki>}}
=29.1198</nowiki>}}
Screenshot of KAlgebra after running these computations:
Screenshot of '''KAlgebra''' after running these computations:
[[Image:KAlgebra-Fluids-Example-Screenshot.png|400px|center]]
[[Image:KAlgebra-Fluids-Example-Screenshot.png|400px|center]]


<!--T:52-->
[[Category:Education]]
[[Category:Education]]
</translate>
</translate>

Latest revision as of 09:53, 29 April 2011

This page shows some uses of KAlgebra in real world problems.

Combinatorial example

We have 6 people who want to know how to get around a table with 6 chairs.

We know that 6 people can get around the table with this configuration

p1 p2 p3 p4 p5 p6
p1 p2 p3 p4 p6 p5
p1 p2 p3 p5 p4 p6
p1 p2 p3 p5 p6 p4

And so on.

We notice that the last item rotates its position by 1, the fifth rotates position by 2, the fourth rotates position by 3, the third rotates position by 4, the second rotates position by 5 and first rotates position by 6. So we can write down a simple formula:

6*5*4*3*2*1

Let's write this into KAlgebra console, and the answer returned is:

(((((1)*2)*3)*4)*5)*6
=720

This kind of arrangement of things around some position, where the position number is equal to the number of things, is called "permutation".

Let's try to call in KAlgebra the permutation function:

factorial(6)

and we get

factorial(6)
=720

It's the same result as you can see.

Probability example

Let's roll a dice. We want to know the probability of one face appearing.

We can define positive probability, the result of the event being favourable to us, and negative probability, the result of the event being unfavourable to us.

So you have to pick only one face:

probability = face picked / total face = 1/6

So now we know that when a dice is rolled there is a 1/6 of probability that a face we chose will come up.

We can set a simple function in KAlgebra to take this formula in a simple way:

probability:=(favorable,total)->favorable/total

Numerical Theory

Let's say that we want to know the sum of all numbers between a bounded interval, for instance 1 - 100. We have to do the sum of all numbers from 0 to 100 if we don't know the rule to get them.

KAlgebra offers a great facility to this task. Let's write in console:

sum(x: x=1..100)

and we get the result:

sum(x: x=1..100)
= 5050

The syntax indicate this:

1. Bound x as variable
2. Take first value of x
3. Take second value of x and add the previous value of x
4. Take third value of x and add the previous value of x
...
N. Take the last value of x and add the last value of x

Electronic

Example 1

Let's take a simple AND gate with two inputs and one output. To resolve it in KAlgebra we will write

and(variable1, variable2)

from which we will get the and value of the input as output.

Example 2

We have a simple circuit: a battery of 3V and two electrical resistances (R1 and R2) put on parallel of 3kOhm. We want to get the current circulating in the circuit.

We have first to calculate the value of the electric resistance expressed according to the law:

TotalResistance = (1/R1 + 1/R2)-1
Current = Voltage/TotalResistance

Let's write a simple function in KAlgebra to do this:

totalresistance:=(R1,R2)->(1/R1+1/R2)^-1
current:=(voltage,totalresistance)->voltage/totalresistance

Let's see what we get:

current(3, totalresistance(3000, 3000))
current(3, totalresistance(3 000, 3 000))
= 0,002


Fluid

Example Problem with Same Material, but Different Volumes and Temperatures

Now, what if we need to know the final temperature when we mix 40L of 15°C water with 30L of 70°C water? Using conservation of energy, we know that the initial and final thermal energies are the same, so the final energy is equal to the energy of the first fluid plus the energy of the second fluid(using U for internal energy):

Ufinal = U1 + U2

Internal energy is equal to the volumetric heat capacity times volume times temperature:

U = C*V*T

So Cfinal*Vfinal*Tfinal = C1*V1*T1 + C2*V2*T2

And since the heat capacities are all the same and cancel out, and the final volume is the sum of the two initial volumes:

(V1+V2)*Tfinal = V1*T1 + V2*T2
or
Tfinal = (V1*T1 + V2*T2)/(V1+V2)

We can then either use this directly in KAlgebra:

(40*15 + 30*70)/(40 + 30)
(40*15+30*70)/(40+30)
=38.5714

and get the final temperature, or put in a function if we need to repeat the computation:

finalTemp:=(v1,t1,v2,t2)->(v1*t1 + v2*t2)/(v1+v2)

Which we can then use like this:

finalTemp(40,15,30,70)
finalTemp(40, 15, 30, 70)
=38.5714

Example Problem with Different Fluids

Now, suppose the two fluids have different volumetric heat capacities, such as 4180 J/(L*K) for the first liquid (water), and 1925 J/(L*K) for the second liquid (ethanol). We will need to refer back to the equation:

Cfinal*Vfinal*Tfinal = C1*V1*T1 + C2*V2*T2

The resultant heat capacity will be the average of the capacities of the first and second fluids, weighted by volume(since it is a volumetric heat capacity rather than mass- or molar-specific):

Cfinal = (C1*V1 + C2*V2)/Vfinal

And plugging this into the previous equation, we get:

(C1*V1 + C2*V2)*Tfinal = C1*V1*T1 + C2*V2*T2
or
Tfinal = (C1*V1*T1 + C2*V2*T2)/(C1*V1 + C2*V2)

And either use this formula directly:

(4180*40*15 + 1925*30*70)/(4180*40+1925*30)
((4,180*40)*15+(1,925*30)*70)/(4,180*40+1,925*30)
=29.1198

Or write a function if we want to repeat the calculation:

finalTemp2:=(c1,v1,t1,c2,v2,t2)->(c1*v1*t1 + c2*v2*t2)/(c1*v1+c2*v2)

Which we can then use like this:

finalTemp2(4180,40,15,1925,30,70)
finalTemp2(4,180, 40, 15, 1,925, 30, 70)
=29.1198

Screenshot of KAlgebra after running these computations: