일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- FTCS
- Laminar
- 디스크 컨트롤러
- 힙
- 우선순위큐
- 통계학
- programmers
- heap
- Fluid Dynamics
- 유체역학
- 파이썬
- Python
- Navier-Stokes
- 이중우선순위큐
- Blasius
- Turbulent
- Statistics
- 회귀
- Heat Equation
- regression
- 프로젝트오일러
- Fluids
- Compressible Flow
- python3
- 프로그래머스
- Finite Difference Method
- projecteuler
- Crank-Nicolson
- Boundary Layers
- 예제
- Today
- Total
목록분류 전체보기 (68)
Sudal's Garage
Question: 145 is a curious number, as 1! + 4! + 5! = 1 + 24 + 120 = 145.Find the sum of all numbers which are equal to the sum of the factorial of their digits.Note: as 1! = 1 and 2! = 2 are not sums they are not included. 문제: 145는 '희한한 성질'이 있는 숫자인데, 1! + 4! + 5! = 1 + 24 + 120 = 145 와 같이 각 자리 숫자의 팩토리얼을 더하면 자기 자신이 된다.이러한 '희한한 성질'이 있는 모든 숫자의 합을 구하여라.주의: 1! = 1 이고 2! = 2 인데 이것들은 합이 아니므로 포함되지 않는다. ..
Question: The fraction 49/98 is a curious fraction, as an inexperienced mathematician in attempting to simplify it may incorrectly believe that 49/98 = 4/8, which is correct, is obtained by cancelling the 9s.We shall consider fractions like, 30/50 = 3/5, to be trivial examples.There are exactly four non-trivial examples of this type of fraction, less than one in value, and containing two digits ..
Question: We shall say that an n-digit number is pandigital if it makes use of all the digits 1 to n exactly once; for example, the 5-digit number, 15234, is 1 through 5 pandigital.The product 7254 is unusual, as the identity, 39 × 186 = 7254, containing multiplicand, multiplier, and product is 1 through 9 pandigital.Find the sum of all products whose multiplicand/multiplier/product identity can..
Question: In England the currency is made up of pound, £, and pence, p, and there are eight coins in general circulation:1p, 2p, 5p, 10p, 20p, 50p, £1 (100p) and £2 (200p).It is possible to make £2 in the following way:1×£1 + 1×50p + 2×20p + 1×5p + 1×2p + 3×1pHow many different ways can £2 be made using any number of coins? 문제:영국의 화폐는 파운드, £, 펜스, p로 구성되는데 일반적으로 8개의 동전이 있다.1p, 2p, 5p, 10p, 20p, 5..
clear all; close all; x = [-3 -1 1 3]; y = [1.3 1.5 1.4 1.2]; G = ones(length(x),3); G(:,2) = x'; G(:,3) = x'.^2; beta = (G'*G)\G'*y'; A = beta(1); B = beta(2); C = beta(3); scatter(x,y,'filled') hold on x = linspace(-3,3); plot(x,A + B*x + C*x.^2) Figure: