1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
CaHeK987 [17]
1 year ago
11

Find the measure of the missing angle

Mathematics
2 answers:
Alexus [3.1K]1 year ago
5 0

Answer: 149° both

Step-by-step explanation:

The angle B and C are equal as they are on opposite sides.

Angle B and C is equal to 180 - 31 = 149 due to the straight line rule

gregori [183]1 year ago
4 0

Answer:

What is Confucian culture? Confucian culture is a cultural school with Confucianism as the guiding ideology, which has been respected by scholars and believers in all generations.

Confucianism was created by Kong Qiu in the Spring and Autumn Period. It advocated blood relations, worldly achievements, self-cultivation and preservation, and moral rationality. Its central ideas were forgiveness, loyalty, filial piety, fraternal love, courage, benevolence, justice, propriety, wisdom, and faith. Confucianism has been respected by generations of rulers for more than two thousand years, and has experienced the inheritance and development of Confucius's later learning.

You might be interested in
A DJ tracks the song requests she receives on a Friday night. She noted that the number of requests for country songs was 2 more
AlladinOne [14]
I pretty sure it’s A
3 0
2 years ago
You are given 4 matrices M1, M2, M3, M4 and you are asked to determine the optimal schedule for the product M1 ×M2 × M3 ×M4 that
alexandr1967 [171]

Answer:

Step-by-step explanation:

first method is to try out all possible combinations and pick out the best one which has the minimum operations but that would be infeasible method if the no of matrices increases  

so the best method would be using the dynamic programming approach.

A1 = 100 x 50

A2 = 50 x 200

A3 = 200 x 50

A4 = 50 x 10

Table M can be filled using the following formula

Ai(m,n)

Aj(n,k)

M[i,j]=m*n*k

The matrix should be filled diagonally i.e., filled in this order

(1,1),(2,2)(3,3)(4,4)

(2,1)(3,2)(4,3)

(3,1)(4,2)

(4,1)

<u>                  Table M[i, j]                                             </u>

             1                      2                  3                    4

4    250000          200000        100000                0  

3      

750000        500000            0

2      1000000             0

1            

0

Table S can filled this way

Min(m[(Ai*Aj),(Ak)],m[(Ai)(Aj*Ak)])

The matrix which is divided to get the minimum calculation is selected.

Table S[i, j]

           1          2         3        

4

4          1           2         3

3          

1          2

2            1

1

After getting the S table the element which is present in (4,1) is key for dividing.

So the matrix multiplication chain will be (A1 (A2 * A3 * A4))

Now the element in (4,2) is 2 so it is the key for dividing the chain

So the matrix multiplication chain will be (A1 (A2 ( A3 * A4 )))

Min number of multiplications: 250000

Optimal multiplication order: (A1 (A2 ( A3 * A4 )))

to get these calculations perform automatically we can use java

code:

public class MatrixMult

{

public static int[][] m;

public static int[][] s;

public static void main(String[] args)

{

int[] p = getMatrixSizes(args);

int n = p.length-1;

if (n < 2 || n > 15)

{

System.out.println("Wrong input");

System.exit(0);

}

System.out.println("######Using a recursive non Dyn. Prog. method:");

int mm = RMC(p, 1, n);

System.out.println("Min number of multiplications: " + mm + "\n");

System.out.println("######Using bottom-top Dyn. Prog. method:");

MCO(p);

System.out.println("Table of m[i][j]:");

System.out.print("j\\i|");

for (int i=1; i<=n; i++)

System.out.printf("%5d ", i);

System.out.print("\n---+");

for (int i=1; i<=6*n-1; i++)

System.out.print("-");

System.out.println();

for (int j=n; j>=1; j--)

{

System.out.print(" " + j + " |");

for (int i=1; i<=j; i++)

System.out.printf("%5d ", m[i][j]);

System.out.println();

}

System.out.println("Min number of multiplications: " + m[1][n] + "\n");

System.out.println("Table of s[i][j]:");

System.out.print("j\\i|");

for (int i=1; i<=n; i++)

System.out.printf("%2d ", i);

System.out.print("\n---+");

for (int i=1; i<=3*n-1; i++)

System.out.print("-");

System.out.println();

for (int j=n; j>=2; j--)

{

System.out.print(" " + j + " |");

for (int i=1; i<=j-1; i++)

System.out.printf("%2d ", s[i][j]);

System.out.println();

}

System.out.print("Optimal multiplication order: ");

MCM(s, 1, n);

System.out.println("\n");

System.out.println("######Using top-bottom Dyn. Prog. method:");

mm = MMC(p);

System.out.println("Min number of multiplications: " + mm);

}

public static int RMC(int[] p, int i, int j)

{

if (i == j) return(0);

int m_ij = Integer.MAX_VALUE;

for (int k=i; k<j; k++)

{

int q = RMC(p, i, k) + RMC(p, k+1, j) + p[i-1]*p[k]*p[j];

if (q < m_ij)

m_ij = q;

}

return(m_ij);

}

public static void MCO(int[] p)

{

int n = p.length-1;     // # of matrices in the product

m    =    new    int[n+1][n+1];        //    create    and    automatically initialize array m

s = new int[n+1][n+1];

for (int l=2; l<=n; l++)

{

for (int i=1; i<=n-l+1; i++)

{

int j=i+l-1;

m[i][j] = Integer.MAX_VALUE;

for (int k=i; k<=j-1; k++)

{

int q = m[i][k] + m[k+1][j] + p[i-1]*p[k]*p[j];

if (q < m[i][j])

{

m[i][j] = q;

s[i][j] = k;

}

}

}

}

}

public static void MCM(int[][] s, int i, int j)

{

if (i == j) System.out.print("A_" + i);

else

{

System.out.print("(");

MCM(s, i, s[i][j]);

MCM(s, s[i][j]+1, j);

System.out.print(")");

}

}

public static int MMC(int[] p)

{

int n = p.length-1;

m = new int[n+1][n+1];

for (int i=0; i<=n; i++)

for (int j=i; j<=n; j++)

m[i][j] = Integer.MAX_VALUE;

return(LC(p, 1, n));

}

public static int LC(int[] p, int i, int j)

{

if (m[i][j] < Integer.MAX_VALUE) return(m[i][j]);

if (i == j) m[i][j] = 0;

else

{

for (int k=i; k<j; k++)

{

int   q   =   LC(p,   i,   k)   +   LC(p,   k+1,   j)   +   p[i-1]*p[k]*p[j];

if (q < m[i][j])

m[i][j] = q;

}

}

return(m[i][j]);

}

public static int[] getMatrixSizes(String[] ss)

{

int k = ss.length;

if (k == 0)

{

System.out.println("No        matrix        dimensions        entered");

System.exit(0);

}

int[] p = new int[k];

for (int i=0; i<k; i++)

{

try

{

p[i] = Integer.parseInt(ss[i]);

if (p[i] <= 0)

{

System.out.println("Illegal input number " + k);

System.exit(0);

}

}

catch(NumberFormatException e)

{

System.out.println("Illegal input token " + ss[i]);

System.exit(0);

}

}

return(p);

}

}

output:

7 0
3 years ago
What is two fifths plus one fourth plus one tenth
drek231 [11]

Answer:

3/4

Step-by-step explanation:

2/5+1/4+1/10=8/20+5/20+2/20=(8+5+2)/20=15/20=3/4

7 0
2 years ago
Katie buys a large pizza for $14.99 and bottles of soda for $1.50 each. If the total cost was $23.99, how many bottles of soda (
Nady [450]

The number of soda bottles Katie bought is 6

The given parameters are:

  • Large Pizza = $14.99
  • Soda = $1.50 per bottle
  • Total cost = $23.99

Assume the number of soda bottle is x.

So, we have:

Total = Pizza + Soda \times x

This gives

23.99 = 14.99 + 1.50\times x

Subtract 14.99 from both sides of the equations

9 = 1.50\times x

Divide both sides of the equations by 1.5

6=x

Rewrite the equation as

x = 6

Hence, the number of bottles is 6

Read more about linear equations at:

brainly.com/question/14323743

7 0
2 years ago
a drugstores sells pens for $1.50 each and notebooks for $4 each. The owner would like to sell $35 of these items each day.
aleksandrvk [35]

what is the question. I am kinda confused what you want me to solve. Please state the question more clearly.



-brainly.com

4 0
3 years ago
Other questions:
  • A fence enclosing a rectangular pen 100 feet long and 80 feet wide has a post at each corner and a post every 10 feet along the
    5·1 answer
  • Recently, More Money 4U offered an annuity that pays 5.4% compounded monthly. If $1,132 is deposited into this annuity every​ mo
    10·2 answers
  • What is the value of the x variable in the solution to the following system of equations? 4x − 3y = 3 5x − 4y = 3
    8·2 answers
  • #7 What is the Y-intercept of this table?
    15·1 answer
  • Find the product. Write fractions in simplest form -2/7×7/4 plzz hurry im in a rush
    12·1 answer
  • The area of a rectangular field is 2c3 − c2 + 6 square units. If the length of the field is c − 2 units, what is its width? The
    13·1 answer
  • What is 5/10 - 3/10 simplify your answer
    9·2 answers
  • 1.7x0.825<br> 0.24x3.3<br><br> Pls help thx
    14·2 answers
  • ? - 20.8 = 41.06<br><br> Please help
    15·1 answer
  • What's the answer? I don't get it<br><br>- 1/2 X + 3 = 1/4 (X-12)
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!