MN^5/p^4
Chat with our AI personalities
y = kn / (1 + n2)First, let's express it with negative exponents:y = kn * (1 + n2)-1Then apply the chain rule:dy|dn = k(1 + n2)-1 - kn(1 + n2)-2 * 2nAnd simplify:dy|dn = k / (1 + n2) - 2n / kn(1 + n2)
4*n2 = 16 Divide both sides by 4: n2 = 4 Take square roots: n = -2 or n = 2
If you mean: 6/n times 5/n-1 = 1/3 Then: 30/n2-n = 1/3 Multiplying both sides by n2-n: 30 = n2-n/3 Multiplying both sides by 3: 90 = n2-n Subtracting 90 from both sides: 0 = n2-n-90 or n2-n-90 = 0 Solving the above quadratic equation: n = -9 or n =10 If n is of a material value its more likely to be 10 Note that n2 means n squared
Add 7 to each side: 3n2 = 7 Divide each side by 3: n2 = 7/3 n = sqrt 7/sqrt 3, ie just over 1.5
#include<stdio.h> int main(){ int n1,n2; printf("\nEnter two numbers:"); scanf("%d %d",&n1,&n2); while(n1!=n2){ if(n1>=n2) n1=n1-n2; else n2=n2-n1; } printf("\nGCD=%d",n1); return 0; }