+0  
 
-1
274
2
avatar

 

 In these puzzles, the goal is to fill every empty square (including shaded squares) so that:

Each square contains a positive digit (1-9). Digits may be reused.

The percent next to a row gives the percent of the row sum contained in the shaded square of that row.

The percent above each column gives the percent of the column sum contained in the shaded square of that column.

 

 

Solve the following percent puzzle, entering each square of the completed puzzle in the corresponding box below.
 

Asymptote code below

 

 

[asy]
void shademe(pair A) {
fill(A--(A+(1,0))--(A+(1,1))--(A+(0,1))--cycle,gray(0.8));
}
size(125);
shademe((2,0));
shademe((1,1));
shademe((0,2));
for(int i=0;i<=3;i+=1){
draw((i,0)--(i,3));
draw((0,i)--(3,i));
}
label("$33\frac13\%$",(0,2.5),W);
label("$50\%$",(0,1.5),W);
label("$50\%$", (0,0.5), W);
label("$75\%$", (0.5,3),N);
label("$66\frac23\%$", (1.5,3),N);
label("$11\frac19\%$", (2.5,3), N);
[/asy]

 Apr 4, 2022
 #1
avatar+2666 
+1

A. It looks suspiciously like the homework your teacher assigned. 

 

B. No image, so I can't help you, even if I wanted to...

 Apr 4, 2022
 #2
avatar
0

Answer
2 1 3

1 8 7

1 3 4

 Apr 5, 2022

1 Online Users

avatar