brøk med negative tall!?
Posted: 17/04-2005 11:51
				
				hvordan regner man ut en brøk der enten nevner eller teller (eller begge) er negative tall? (-1,-2,-3..)  
			

 
 
Code: Select all
 a       c     (a+c)
---- + ----= --------
 b      b         b
---------------------------------
a       c     (a-c)
---- - ----= --------
b       b        b
---------------------------------
 -a      c    (-a)+c
---- + ----= ---------
  b      b       b
----------------------------------
 
 a       c      
---- + -----
- b      b       
    a*-1      c      
=--------- + ---- (-*-=+)
   -b *-1     b   
  -a     c      
=---- + ----
   b     b   
        
    (-a+c)
= ---------      
       b      
--------------------------------------
 -a      c     
----- + ----
- b      b    
   -a * -1   c
=-------- +-----   
   -b * -1   b
  a       c
=---- + ----
  b       b
  (a+c)
=-------
    b
-----------------------------------
 1      3     (1+3)    4
---- + ----= --------=---- = 2
 2      2         2     2
---------------------------------------
1       3     (1-3)    -2
---- - ----= -------= ----- = -1
2       2        2      2
---------------------------------------
 -1      3    (-1)+3   2
---- + ----= -------= ---=1
  2      2       2     2
--------------------------------------------
1        3      
---- + ----- 
- 2      2        
    1*-1      3      
=--------- + ---- (-*-=+) 
   -2 *-1     2    
  -1     3      
=---- + ---- 
   2     2    
        
    (-1+3)       2
= ---------  = ---- =1   
       2         2  
-----------------------------------------
 -1      3     
----- + ----
- 2      2    
   -1 * -1   3
=-------- +-----   
   -2 * -1   2
  1       3
=---- + ----
  2       2
  (1+3)
=-------=2
    2
------------------------
  