randFromArray([["in",new Plural(function(e){return $.ngettext({lang:"es-ES",messages:["pulgada","pulgadas"]},e)})],["ft",new Plural(function(e){return $.ngettext({lang:"es-ES",messages:["pie","pies"]},e)})],["m",new Plural(function(e){return $.ngettext({lang:"es-ES",messages:["metro","metros"]},e)})],["cm",new Plural(function(e){return $.ngettext({lang:"es-ES",messages:["centímetro","centímetros"]},e)})],["",new Plural(function(e){return $.ngettext({lang:"es-ES",messages:["unidad\n\nunidades","unidades"]},e)})]])
randRange(2, 9)
$._("\u00e1rea")
¿Cuál es el área del cuadrado?
init({range:[[-2,S+1],[-1,S+1]],scale:30}),path([[0,0],[0,S],[S,S],[S,0],!0],{stroke:BLUE,fill:"#eee"}),label([S/2,S],S+"\\text{ "+UNIT+"}","above"),label([0,S/2],S+"\\text{ "+UNIT+"}","left")
S * S plural_form(UNIT_TEXT) cuadrados
El área es el largo multiplicado por el ancho (lado por lado).
_(S-1).times(function(e){style({stroke:GRAY,strokeWidth:1,strokeDasharray:"-"},function(){path([[0,e+61/60],[S,e+61/60]]),path([[e+61/60,0],[e+61/60,S]])})})
The length is S UNIT_TEXT and
the width is S UNIT_TEXT, so the
area is S\timesS
square plural_form(UNIT_TEXT, S * S).
\qquad\text{AREA} = S \times S
= S*S
También podemos contar S * S plural_form(UNIT_TEXT, S * S) cuadrados.
_(S*S).times(function(e){label([e%S+.5,S-floor(e/S)-.5],e+1,"center",!1).css({color:GRAY})})
randRange(2, 9)
randRange(2, 9)
$._("\u00e1rea")
¿Cuál es el área del rectángulo?
init({range:[[-2,L+1],[-1,W+1]],scale:30}),path([[0,0],[0,W],[L,W],[L,0],!0],{stroke:BLUE,fill:"#eee"}),label([L/2,W],L+"\\text{ "+UNIT+"}","above"),label([0,W/2],W+"\\text{ "+UNIT+"}","left")
L * Wplural_form(UNIT_TEXT) cuadrados
El área es el largo multiplicado por el ancho (lado por lado).
style({stroke:GRAY,strokeWidth:1,strokeDasharray:"-"},function(){_(L-1).times(function(e){path([[e+61/60,0],[e+61/60,W]])}),_(W-1).times(function(e){path([[0,e+61/60],[L,e+61/60]])})})
The length is L UNIT_TEXT.
The width is W UNIT_TEXT.
Por tanto el área es L\timesW plural_form(UNIT_TEXT, L * W) cuadrados.
\qquad\text{AREA} = L \times W
= L * W
También podemos contar L * W plural_form(UNIT_TEXT, L * W) cuadrados.
_(L*W).times(function(e){label([e%L+.5,W-floor(e/L)-.5],e+1,"center",!1).css({color:GRAY})})
randRange(5, 10)
randRange(5, 10)
createOddShape({width:WIDTH,height:HEIGHT})
¿Cuál es el área de la figura? Cada cuadrado de la cuadrícula es 1 \times 1 UNIT_TEXT cuadrados.
init({range:[[-1,WIDTH+1],[-1,HEIGHT+1]]});var shape=[];_(WIDTH+1).times(function(e){line([e,0],[e,HEIGHT],{"stroke-width":1,stroke:"#bbb"})}),_(HEIGHT+1).times(function(e){line([0,e],[WIDTH,e],{"stroke-width":1,stroke:"#bbb"})}),_.each(SHAPE.sides,function(e){path([e.start,e.end],{stroke:BLUE})})
SHAPE.area plural_form(UNIT_TEXT) cuadrados
El área es el número de cuadrados de 1 \times 1 que hay dentro de la figura.
SHAPE.labelSquares()
Cuenta el número de cuadrados que hay dentro del rectángulo.
El área es SHAPE.area plural_form(UNIT_TEXT, SHAPE.area) cuadrados.