POJ 2006 Litmus Test (简单数学&弱酸的电离常数)

本文介绍了一种通过酸的电离平衡计算溶液pH值的方法。给出酸的电离常数、初始浓度及电离产物的比例,可以求解出溶液中质子浓度并进一步计算出pH值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Litmus Test

Time Limit:  1000MS
Memory Limit: 30000K

Description

The pH scale measures the concentration of protons (H +) in a solution and, therefore, its acidity or alkalinity. The pH value of a solution is a number between 0 and 14; it is less than 7 if the solution is acidic, greater than 7 if the solution is basic, and 7 if it is neutral. 

The formula for calculating pH is 
pH = -log 10 [H +]

where [H +] is the concentration of protons measured in moles per litre. 

To calculate the pH value of an acid, one has to determine the concentration of protons in the solution. When an acid is dissolved in water, an equilibrium is reached and is governed by the equation 
K a = [H +] [acid ions] / [acid]

where K a is the acidity constant (known for each acid), [acid ions] is the concentration of the acid ions that have dissolved, and [acid] is the concentration of the undissolved acid. Before the acid is added, both [H +] and [acid ions] are assumed to be 0. 
For example, the acidity constant of methanoic acid is 1.6 * 10 -4. Dissolving one mole of acid molecules results in one mole of H + and one mole of acid ions. If the initial concentration of the methanoic acid is 0.1 moles/L and x moles of acid are dissolved (per liter), then the final concentration at equilibrium would be 0.1 - x moles/L for the acid and x moles/L for H + and the acid ions.

Input

The input consists of a number of test cases. Each test case contains 4 numbers on a line: two positive floating-point numbers specifying the acidity constant K a and the original concentration of the acid (in moles/liter) added to the water, as well as two positive integers m and n indicating that each mole of acid molecules is dissolved into m moles of H + ions and n moles of acid ions. The floating-point numbers are specified in scientific notation as shown below. The input is terminated with a line containing four zeros. 

Output

For each test case, print on a line the pH value of the solution, rounded to 3 decimal places.

Sample Input

1.6e-04 1.0e-01 1 1
1.6e-04 1.0e-01 4 1
1.5e-05 5.0e-02 1 2
0 0 0 0

Sample Output

2.407
2.101
3.216

设酸电离了x mol,则有Ka=(mx*nx)/(c-x),解出x后乘上m就是[H+]([物质]表示该物质的浓度)

完整代码:
/*110ms,192KB*/

#include <cstdio>
#include <cmath>

int main(void)
{
	double ka, acid;
	int m, n;
	while (scanf("%lf%lf%d%d", &ka, &acid, &m, &n), m)
		printf("%.3f\n", -log10((-ka + sqrt(ka * ka + (m << 2) * n * acid * ka)) / (n << 1)));
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值